Mercurial > hg > Members > kono > nitros9-code
annotate level1/cmds/echo.asm @ 851:16b8c7dc0082
Made source comment improvements
author | boisy |
---|---|
date | Wed, 15 Jan 2003 00:56:21 +0000 |
parents | e9ce43cc215e |
children | c155aac72190 |
rev | line source |
---|---|
0 | 1 ******************************************************************** |
2 * Echo - Echo text | |
3 * | |
4 * $Id$ | |
5 * | |
6 * Ed. Comments Who YY/MM/DD | |
7 * ------------------------------------------------------------------ | |
200
e9ce43cc215e
Made major changes to headers for consistency and identification
boisy
parents:
0
diff
changeset
|
8 * 5 From Tandy OS-9 Level One VR 02.00.00 |
0 | 9 |
10 nam Echo | |
11 ttl Echo text | |
12 | |
13 * Disassembled 98/09/10 22:44:14 by Disasm v1.6 (C) 1988 by RML | |
14 | |
15 ifp1 | |
16 use defsfile | |
17 endc | |
18 | |
19 tylg set Prgrm+Objct | |
20 atrv set ReEnt+rev | |
21 rev set $01 | |
22 edition set 5 | |
23 | |
24 mod eom,name,tylg,atrv,start,size | |
25 | |
26 u0000 rmb 450 | |
27 size equ . | |
28 | |
29 name fcs /Echo/ | |
30 fcb edition | |
31 | |
32 start tfr d,y | |
33 lda #1 | |
34 os9 I$WritLn | |
35 bcs Exit | |
36 clrb | |
37 Exit os9 F$Exit | |
38 | |
39 emod | |
40 eom equ * | |
41 end | |
42 |