Estex-DSS/SHELL/Commands/PAUSE.ASM
2025-03-06 03:31:14 +10:00

23 lines
419 B
NASM
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;///////////////////////////////////////////////////
;
; PAUSE. <20> ã§  (¢ bat-ä ©«¥)
;
;///////////////////////////////////////////////////
cmd_pause:
LD de,MAIN_MSG.PAUSE ; ¨­¤¥ªá "Press any key to continue ..."
CALL ECHO_MESSAGE ; ¢ë¢®¤ áâப¨
LD A,LF
LD C,Dss.PutChar
RST ToDSS
LD A,R
PUSH AF
LD C,Dss.WaitKey ; ¦¤¥¬ ­ ¦ â¨ï ª« ¢¨è¨
EI
RST ToDSS
POP AF
DI
RET PO
EI
RET
;ret