Mercurial > hg > Members > kono > nitros9-code
annotate level1/cmds/unlink.asm @ 2879:531841047512 lwtools-port
boot_scsi.asm: Fix SCSI ID when booting from SCSI
Due to a typo it would probe for SCSI ID 4 instead
of default 0 (or 8 for HDBDOS/SuperDriver).
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sun, 24 Nov 2013 16:08:53 +0100 |
parents | 2b6d9d391bcc |
children |
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 ????/??/?? |
1349 | 10 * Original Tandy/Microware version |
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 | |
1349 | 36 IFGT Level-1 |
37 os9 F$UnLoad | |
38 ELSE | |
0 | 39 clrb |
40 os9 F$Link | |
1349 | 41 bcs exit |
0 | 42 os9 F$UnLink |
1349 | 43 bcs exit |
44 os9 F$UnLink | |
45 ENDC | |
46 bcs exit | |
1538 | 47 lda ,x |
0 | 48 cmpa #C$CR |
49 bne start | |
50 clrb | |
1349 | 51 exit os9 F$Exit |
0 | 52 |
53 emod | |
54 eom equ * | |
55 end | |
56 |