Mercurial > hg > Members > kono > nitros9-code
annotate level1/cmds/unlink.asm @ 826:6c56dfe1de1c
Added comments
author | boisy |
---|---|
date | Tue, 14 Jan 2003 02:29:34 +0000 |
parents | e9ce43cc215e |
children | c155aac72190 |
rev | line source |
---|---|
0 | 1 ******************************************************************** |
2 * Unlink - Unlink memory module | |
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 * 2 From Tandy OS-9 Level One VR 02.00.00 |
0 | 9 |
10 nam Unlink | |
11 ttl Unlink memory module | |
12 | |
13 * Disassembled 02/04/03 22:32:26 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 | |
200
e9ce43cc215e
Made major changes to headers for consistency and identification
boisy
parents:
0
diff
changeset
|
22 edition set 2 |
0 | 23 |
24 mod eom,name,tylg,atrv,start,size | |
25 | |
26 u0000 rmb 512 | |
27 size equ . | |
28 | |
29 name fcs /Unlink/ | |
200
e9ce43cc215e
Made major changes to headers for consistency and identification
boisy
parents:
0
diff
changeset
|
30 fcb edition |
0 | 31 |
32 start clra | |
33 clrb | |
34 os9 F$Link | |
35 bcs L0032 | |
36 os9 F$UnLink | |
37 bcs L0032 | |
38 os9 F$UnLink | |
39 bcs L0032 | |
40 lda ,x+ | |
41 cmpa #C$COMA | |
42 beq start | |
43 lda ,-x | |
44 cmpa #C$CR | |
45 bne start | |
46 clrb | |
47 L0032 os9 F$Exit | |
48 | |
49 emod | |
50 eom equ * | |
51 end | |
52 |