home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.barnyard.co.uk
/
2015.02.ftp.barnyard.co.uk.tar
/
ftp.barnyard.co.uk
/
cpm
/
walnut-creek-CDROM
/
CPM
/
CPM68K
/
SD68K.LBR
/
CRLF.S
< prev
next >
Wrap
Text File
|
2000-06-30
|
512b
|
22 lines
**** CRLF Output
**
** Function:
** Print <CR> and <LF> on CON:
** Inputs: -none-
** Outputs: -none-
** Registers affected: -none-
** Routines called: COUT
** Special error conditions: -none-
*
.globl crlf
.globl cout
.text
crlf: move.l d1,-(a7) * save d1
moveq #$0d,d1
jsr cout * <CR>
moveq #$0a,d1
jsr cout * <LF>
move.l (a7)+,d1 * restore d1
rts
.end