Cosmos/source2/Compiler/Cosmos.Compiler.DebugStub/Screen.asm
2012-07-13 16:15:01 +00:00

30 lines
544 B
NASM

DebugWaitMsg db "Waiting for debugger connection..."
db 0
DebugStub_Const_VidBase equ 0xB8000
DebugStub_Cls:
Mov ESI, DebugStub_Const_VidBase
DebugStub_Cls_Block1Begin:
Cmp ESI, 0xB8FA0
JAE DebugStub_Cls_Block1End
Mov dword [ESI + 0], 0x00
Inc ESI
Mov dword [ESI + 0], 0x0A
Inc ESI
jmp DebugStub_Cls_Block1Begin
DebugStub_Cls_Block1End:
DebugStub_Cls_Exit:
Ret
DebugStub_DisplayWaitMsg:
Mov ESI, DebugWaitMsg
Mov EDI, DebugStub_Const_VidBase
Add EDI, 1640
Line 30, Parsing error: while byte ESI[0] != 0 {