Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/drivers/emudsk/h0.asm @ 3211:aa01cfa11267
Updated makefile for EmuDsk driver so that a disk image would be
created with a layout that matches the distribution of the NitrOS-9
disk images so that the files can be easily dsaved across onto existing
disk images.
Also updated ddh0.asm, h0.asm, and h1.asm to use a geometry that will
yield a clust size of 1 disk image with almost the max 128MB size as
well as using a geometry that is more friendly with storing a boot
track on it for use with being shared with the CoCoSDC.
author | David Ladd <drencor-xeen@users.sourceforge.net> |
---|---|
date | Wed, 20 Dec 2017 15:26:30 -0600 |
parents | b8c7b7fbf3c9 |
children |
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 | |
2624 | 13 USE os9.d |
402 | 14 ENDC |
15 | |
16 type SET Devic+Objct | |
17 MOD rend,rnam,type,ReEnt+1,fmnam,drvnam | |
18 FCB $FF all access modes | |
2594
3eeef3d4f272
Corrected cosmetic error in drive address R. Gault
robertgault
parents:
2592
diff
changeset
|
19 FCB $07,$FF,$80 device address |
402 | 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 | |
3211
aa01cfa11267
Updated makefile for EmuDsk driver so that a disk image would be
David Ladd <drencor-xeen@users.sourceforge.net>
parents:
2624
diff
changeset
|
29 FDB $71c6 tracks |
aa01cfa11267
Updated makefile for EmuDsk driver so that a disk image would be
David Ladd <drencor-xeen@users.sourceforge.net>
parents:
2624
diff
changeset
|
30 FCB $01 one side |
402 | 31 FCB $01 no verify |
3211
aa01cfa11267
Updated makefile for EmuDsk driver so that a disk image would be
David Ladd <drencor-xeen@users.sourceforge.net>
parents:
2624
diff
changeset
|
32 FDB $0012 sectors/track |
aa01cfa11267
Updated makefile for EmuDsk driver so that a disk image would be
David Ladd <drencor-xeen@users.sourceforge.net>
parents:
2624
diff
changeset
|
33 FDB $0012 "", track 0 |
402 | 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 |