Initialize AMD64 processor registers
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2023-02-04 23:40:03 +01:00
parent f181215341
commit 55cdae7c83
5 changed files with 99 additions and 12 deletions

View File

@@ -9,6 +9,20 @@
#include <xtos.h>
XTCDECL
VOID
ArpHandleSystemCall32()
{
LdrPrint(L"Handled 32-bit system call!\n");
}
XTCDECL
VOID
ArpHandleSystemCall64()
{
LdrPrint(L"Handled 64-bit system call!\n");
}
/**
* Handles the trap 0x00 when a Divide By Zero exception occurs.
*