Mercurial > hg > Members > kono > nitros9-code
annotate level1/cmds/echo.asm @ 2017:f273e28ea8d0
Breaking kernel down into individual files... added comments
author | boisy |
---|---|
date | Tue, 07 Mar 2006 12:20:16 +0000 |
parents | 84ea83668304 |
children |
rev | line source |
---|---|
0 | 1 ******************************************************************** |
2 * Echo - Echo text | |
3 * | |
4 * $Id$ | |
5 * | |
1325
84ea83668304
Redid comments, reset all rev nibbles that weren't explictly set to 0
boisy
parents:
924
diff
changeset
|
6 * Edt/Rev YYYY/MM/DD Modified by |
84ea83668304
Redid comments, reset all rev nibbles that weren't explictly set to 0
boisy
parents:
924
diff
changeset
|
7 * Comment |
0 | 8 * ------------------------------------------------------------------ |
1325
84ea83668304
Redid comments, reset all rev nibbles that weren't explictly set to 0
boisy
parents:
924
diff
changeset
|
9 * 5 ????/??/?? |
84ea83668304
Redid comments, reset all rev nibbles that weren't explictly set to 0
boisy
parents:
924
diff
changeset
|
10 * From Tandy OS-9 Level One VR 02.00.00. |
0 | 11 |
12 nam Echo | |
13 ttl Echo text | |
14 | |
15 * Disassembled 98/09/10 22:44:14 by Disasm v1.6 (C) 1988 by RML | |
16 | |
17 ifp1 | |
18 use defsfile | |
19 endc | |
20 | |
21 tylg set Prgrm+Objct | |
22 atrv set ReEnt+rev | |
23 rev set $01 | |
24 edition set 5 | |
25 | |
26 mod eom,name,tylg,atrv,start,size | |
27 | |
924 | 28 org 0 |
0 | 29 u0000 rmb 450 |
30 size equ . | |
31 | |
32 name fcs /Echo/ | |
33 fcb edition | |
34 | |
35 start tfr d,y | |
36 lda #1 | |
37 os9 I$WritLn | |
38 bcs Exit | |
39 clrb | |
40 Exit os9 F$Exit | |
41 | |
42 emod | |
43 eom equ * | |
44 end | |
45 |