Estex-DSS/SHELL/Commands/PAUSE.ASM
Tolik bdef22154b исправлен улёт стека в ПЗУ в процедуре запуска EXE
исправлен баг со скроллом в ECHOKEY
2025-07-11 05:10:42 +10:00

23 lines
473 B
NASM
Raw Permalink 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
;///////////////////////////////////////////////////