home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
simtel
/
sigm
/
vols000
/
vol085
/
pause.src
< prev
next >
Wrap
Text File
|
1984-04-29
|
419b
|
23 lines
; short routine to print a message to the console, wait
; for any keypressed then return immediately to cp/m.
; 05/14/82 - Raymond E. Penley
org 0100h
;
lxi d,msg
mvi c,09h ;print string function code
call 5
;
mvi c,1 ;conin function code
call 5
;
lxi d,crlf ;print a cr/lf
mvi c,09h
call 5
ret ;back to ccp
;
msg: db 'Press any key to return to menu:$'
crlf: db 13h,0ah,'$'
end