Mercurial > hg > Members > kono > nitros9-code
annotate lib/alib/fputspace.as @ 3278:ea1afb494127
defs: Add Bt.Sec for atari and corsham
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sat, 07 Mar 2020 23:52:40 +0100 |
parents | 03f26e88b809 |
children |
rev | line source |
---|---|
2474 | 1 **************************************** |
2 | |
3 * Subroutine to print a space | |
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 nam Output One Space Char. | |
13 ttl Assembler Library Module | |
14 | |
15 | |
2782
aaba193af04f
Updated code to use lwasm/lwlink
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2474
diff
changeset
|
16 section .text |
2474 | 17 |
18 FPUTSPACE: | |
19 ldb #$20 | |
20 lbra FPUTC | |
21 | |
22 endsect |