mirror of
https://github.com/Tolik-Trek/Estex-DSS.git
synced 2026-06-15 01:11:48 +03:00
15 lines
359 B
NASM
15 lines
359 B
NASM
;///////////////////////////////////////////////////
|
||
;
|
||
; 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 c,Dss.WaitKey ; ¦¤¥¬ ¦ â¨ï ª« ¢¨è¨
|
||
JP ToDSS
|
||
;ret
|