Implemented trap handler stubs in MASM

This commit is contained in:
Jozef Nagy
2023-11-21 18:27:34 +01:00
parent c66ea77a8b
commit 89049700fb
7 changed files with 650 additions and 340 deletions

View File

@@ -30,4 +30,7 @@ EXTERN UCHAR ArKernelBootStack[KERNEL_STACK_SIZE];
/* Kernel own fault stack */
EXTERN UCHAR ArKernelFaultStack[KERNEL_STACK_SIZE];
/* Trap handlers */
EXTERN PVOID ArpTrapHandlers[IDT_ENTRIES];
#endif /* __XTOSKRNL_AMD64_GLOBALS_H */