Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/p2mods/tsayhi.asm @ 2857:d5220b220313 lwtools-port
Makefiles: Use native cp for copying dsk images
The "os9 copy" is not able to do this on Cygwin,
and is not the right tool for the job anyway.
Thanks to Bob Devries for reporting this issue!
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sat, 13 Jul 2013 11:53:36 +0200 |
parents | b8c7b7fbf3c9 |
children |
rev | line source |
---|---|
0 | 1 ifp1 |
2624 | 2 use defsfile |
0 | 3 endc |
4 | |
5 Type set Prgrm+Objct | |
6 Revs set ReEnt+1 | |
7 edition set $01 | |
8 | |
9 mod OS9End,OS9Name,Type,Revs,start,256 | |
10 | |
11 OS9Name fcs "TSayHi" | |
12 fcb edition | |
13 | |
14 F$SAYHI equ $25 | |
15 | |
16 * routine cold | |
17 start equ * | |
18 lda ,x | |
19 cmpa #$0D | |
20 bne SayHi | |
21 ldx #$0000 | |
22 SayHi os9 F$SAYHI | |
23 bcs error | |
24 clrb | |
25 error os9 F$Exit | |
26 | |
27 emod | |
28 | |
29 OS9End equ * | |
30 end |