Mercurial > hg > Members > kono > nitros9-code
annotate lib/alib/fputcr.a @ 2593:4c3c19ec3257
Added second vhd drive for MESS version 144 and newer. Will not alter
performance with older versions of MESS.
author | robertgault |
---|---|
date | Sat, 24 Dec 2011 13:01:17 +0000 |
parents | 7d70b7e1cb21 |
children | aaba193af04f |
rev | line source |
---|---|
2474 | 1 **************************************** |
2 | |
3 * Subroutine to print a carriage return | |
4 | |
5 * OTHER MODULES REQUIRED: FPUTC | |
6 | |
7 * ENTRY: A=path | |
8 | |
9 * EXIT: CC carry set if error (from I$WritLn) | |
10 * B error code if any. | |
11 | |
12 | |
13 nam Output Carriage Return | |
14 ttl Assembler Library Module | |
15 | |
16 | |
17 psect FPUTCR,0,0,0,0,0 | |
18 | |
19 FPUTCR: | |
20 ldb #$0d | |
21 lbra FPUTC | |
22 | |
23 endsect |