Mercurial > hg > Members > kono > nitros9-code
annotate level1/cmds/unlink.asm @ 1020:c1a5613ffe7b
changes
author | boisy |
---|---|
date | Thu, 06 Mar 2003 01:41:03 +0000 |
parents | c155aac72190 |
children | 84ea83668304 |
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 | |
924 | 26 org 0 |
0 | 27 u0000 rmb 512 |
28 size equ . | |
29 | |
30 name fcs /Unlink/ | |
200
e9ce43cc215e
Made major changes to headers for consistency and identification
boisy
parents:
0
diff
changeset
|
31 fcb edition |
0 | 32 |
33 start clra | |
34 clrb | |
35 os9 F$Link | |
36 bcs L0032 | |
37 os9 F$UnLink | |
38 bcs L0032 | |
39 os9 F$UnLink | |
40 bcs L0032 | |
41 lda ,x+ | |
42 cmpa #C$COMA | |
43 beq start | |
44 lda ,-x | |
45 cmpa #C$CR | |
46 bne start | |
47 clrb | |
48 L0032 os9 F$Exit | |
49 | |
50 emod | |
51 eom equ * | |
52 end | |
53 |