removed the containing subdir

This commit is contained in:
2023-10-02 21:04:28 +09:00
parent 5b2953c9c7
commit ea73f9f8d2
163 changed files with 0 additions and 0 deletions

19
lib/hlt.asm Normal file
View File

@ -0,0 +1,19 @@
.386P
NAME HLT
PROG_CODE SEGMENT ER USE32 'CODE'
ASSUME CS:PROG_CODE
PUBLIC _halt_cpu
_halt_cpu PROC NEAR
;HLT ; this will cause #GP(0) as CPL is set to 3 by intel dos extender.
;MOV AX, CS
;AND AX, 3
RET
_halt_cpu ENDP
PROG_CODE ENDS
END