Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/drivers/emudsk/h0.asm @ 2592:7d8831f053ff
Corrected cosmetic error in drive address R. Gault
author | robertgault |
---|---|
date | Sat, 24 Dec 2011 12:48:56 +0000 |
parents | 28ca7d4dd2c8 |
children | 3eeef3d4f272 |
rev | line source |
---|---|
402 | 1 ******************************************************************** |
2 * Emudsk - Virtual disk driver for CoCo emulators | |
3 * | |
4 * $Id$ | |
5 * | |
6 * Ed. Comments Who YY/MM/DD | |
7 * ------------------------------------------------------------------ | |
8 * 01 Modified to compile under OS9Source tjl 02/08/28 | |
2592
7d8831f053ff
Corrected cosmetic error in drive address R. Gault
robertgault
parents:
402
diff
changeset
|
9 * 02 Corrected device address for MESS R.Gault 11/12/24 |
7d8831f053ff
Corrected cosmetic error in drive address R. Gault
robertgault
parents:
402
diff
changeset
|
10 * Address not used by driver but still .... |
402 | 11 |
12 IFP1 | |
13 USE os9defs | |
14 ENDC | |
15 | |
16 type SET Devic+Objct | |
17 MOD rend,rnam,type,ReEnt+1,fmnam,drvnam | |
18 FCB $FF all access modes | |
19 FCB $07,$FF,$E0 device address | |
20 | |
21 FCB optl number of options | |
22 | |
23 optns EQU * | |
24 FCB DT.RBF RBF device | |
25 FCB $00 drive number | |
26 FCB $00 step rate | |
27 FCB $80 type=nonstd,coco | |
28 FCB $01 double density | |
29 FDB $005a tracks | |
30 FCB $40 one side | |
31 FCB $01 no verify | |
32 FDB $0040 sectors/track | |
33 FDB $0040 "", track 0 | |
34 FCB $03 interleave | |
35 FCB $20 min allocation | |
36 optl EQU *-optns | |
37 | |
38 rnam FCS /H0/ | |
39 fmnam FCS /RBF/ | |
40 drvnam FCS /EmuDsk/ | |
41 | |
42 EMOD | |
43 rend EQU * | |
44 end | |
45 |