Initial revision
[reactos.git] / reactos / ntoskrnl / mm / pageflt.asm
1 %include 'internal/hal/segment.inc'
2
3 BITS 32
4 GLOBAL _exception_handler14
5 EXTERN _exception_handler
6 EXTERN _page_fault_handler
7 segment .text
8
9 _exception_handler14:
10 cli
11 push ds
12 push dword 14
13 pushad
14 mov ax,KERNEL_DS
15 mov ds,ax
16 call _page_fault_handler
17 cmp eax,0
18 jne _ret_from_exp
19 call _exception_handler
20 _ret_from_exp:
21 popad
22 add esp,12
23 iretd
24