mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
23 lines
424 B
NASM
23 lines
424 B
NASM
|
|
|
|
DebugStub_AckCommand:
|
|
|
|
Mov AL, DebugStub_Const_Ds2Vs_CmdCompleted
|
|
Call DebugStub_ComWriteAL
|
|
|
|
Mov EAX, [DebugStub_CommandID]
|
|
Call DebugStub_ComWriteAL
|
|
DebugStub_AckCommand_Exit:
|
|
Ret
|
|
|
|
DebugStub_ProcessCommandBatch:
|
|
DebugStub_ProcessCommandBatch_Begin:
|
|
Call DebugStub_ProcessCommand
|
|
|
|
Cmp AL, 8
|
|
JNE DebugStub_ProcessCommandBatch_Begin
|
|
|
|
Call DebugStub_AckCommand
|
|
DebugStub_ProcessCommandBatch_Exit:
|
|
Ret
|
|
|