Implement HlHalt() intrinsic routine and add basic definitions for kernel services
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2022-12-11 23:09:35 +01:00
부모 0572b208f1
커밋 9f4db475bb
11개의 변경된 파일80개의 추가작업 그리고 13개의 파일을 삭제

파일 보기

@@ -51,6 +51,16 @@ HlCpuId(IN OUT PCPUID_REGISTERS Registers)
return TRUE;
}
XTAPI
VOID
HlHalt()
{
while(TRUE)
{
asm volatile("hlt");
}
}
/**
* Reads the data from the specified I/O port.
*