Mercurial > hg > Members > kono > nitros9-code
annotate level1/cmds/unlink.asm @ 1332:80f15c027ebb
Improved ngu somewhat
author | boisy |
---|---|
date | Sun, 07 Sep 2003 19:29:52 +0000 |
parents | 84ea83668304 |
children | b9df6b3f2eef |
rev | line source |
---|---|
0 | 1 ******************************************************************** |
2 * Unlink - Unlink memory module | |
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 * 2 ????/??/?? |
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 Unlink | |
13 ttl Unlink memory module | |
14 | |
15 * Disassembled 02/04/03 22:32:26 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 | |
1325
84ea83668304
Redid comments, reset all rev nibbles that weren't explictly set to 0
boisy
parents:
924
diff
changeset
|
23 rev set $00 |
200
e9ce43cc215e
Made major changes to headers for consistency and identification
boisy
parents:
0
diff
changeset
|
24 edition set 2 |
0 | 25 |
26 mod eom,name,tylg,atrv,start,size | |
27 | |
924 | 28 org 0 |
0 | 29 u0000 rmb 512 |
30 size equ . | |
31 | |
32 name fcs /Unlink/ | |
200
e9ce43cc215e
Made major changes to headers for consistency and identification
boisy
parents:
0
diff
changeset
|
33 fcb edition |
0 | 34 |
35 start clra | |
36 clrb | |
37 os9 F$Link | |
38 bcs L0032 | |
39 os9 F$UnLink | |
40 bcs L0032 | |
41 os9 F$UnLink | |
42 bcs L0032 | |
43 lda ,x+ | |
44 cmpa #C$COMA | |
45 beq start | |
46 lda ,-x | |
47 cmpa #C$CR | |
48 bne start | |
49 clrb | |
50 L0032 os9 F$Exit | |
51 | |
52 emod | |
53 eom equ * | |
54 end | |
55 |