Mercurial > hg > Members > kono > nitros9-code
annotate level1/modules/ddiskdesc.asm @ 2730:6bd6e348665d
Working on cloned default branch, pulled 2012/11/03
user: gheskett@wdtv.com
branch 'default'
changed ChangeLog
changed ReadMe
changed defs/rbf.d
changed defs/rbsuper.d
changed defs/scsi.d
changed level1/atari/cmds/fuji.asm
changed level1/coco/modules/makefile
changed level1/modules/boot_scsi.asm
changed level1/modules/superdesc.asm
changed level2/coco3/bootfiles/makefile
changed level2/coco3/modules/makefile
changed level2/coco3_6309/bootfiles/makefile
changed level2/modules/joydrv_6551L.asm
changed rules.mak
author | gheskett@wdtv.com |
---|---|
date | Sat, 10 Nov 2012 11:55:48 -0500 |
parents | d20130550ce5 |
children | be0c9c15f08a |
rev | line source |
---|---|
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
1 ******************************************************************** |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
2 * ddiskdesc - ddisk Device Descriptor Template |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
3 * |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
4 * $Id$ |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
5 * |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
6 * Edt/Rev YYYY/MM/DD Modified by |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
7 * Comment |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
8 * Converted rb1773 to ddisk for Dragon disks. |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
9 * ------------------------------------------------------------------ |
1845 | 10 * |
11 * 2005-06-20, P.Harvey-Smith. | |
12 * Added DragonAlpha define to correctly define the I/O port on the | |
13 * Dragon ALpha/Professional | |
14 * | |
15 * | |
16 nam ddiskdesc | |
17 ttl ddisk Device Descriptor Template | |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
18 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
19 * Disassembled 98/08/23 17:09:41 by Disasm v1.6 (C) 1988 by RML |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
20 |
1845 | 21 ifp1 |
22 use defsfile | |
23 endc | |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
24 |
1845 | 25 tylg set Devic+Objct |
26 atrv set ReEnt+rev | |
27 rev set $00 | |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
28 |
1845 | 29 DNum set 0 |
30 IFNE D35 | |
31 Type set TYP.CCF+TYP.3 | |
32 ELSE | |
33 Type set TYP.CCF+TYP.5 | |
34 ENDC | |
35 Density set DNS.MFM | |
36 Step set STP.6ms | |
37 Cyls set 40 | |
38 Sides set 1 | |
39 Verify set 1 | |
40 SectTrk set 18 | |
41 SectTrk0 set 18 | |
42 Interlv set 2 | |
43 SAS set 8 | |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
44 |
1845 | 45 mod eom,name,tylg,atrv,mgrnam,drvnam |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
46 |
1845 | 47 fcb DIR.!SHARE.!PEXEC.!PWRIT.!PREAD.!EXEC.!UPDAT. mode byte |
48 fcb HW.Page extended controller address | |
49 | |
50 IFEQ DragonAlpha-1 | |
51 fdb $FF2C physical controller address | |
52 ELSE | |
53 fdb $FF40 physical controller address | |
54 ENDC | |
55 | |
56 fcb initsize-*-1 initalization table size | |
57 fcb DT.RBF device type:0=scf,1=rbf,2=pipe,3=scf | |
58 fcb DNum drive number | |
59 fcb Step step rate | |
60 fcb Type drive device type | |
61 fcb Density media density:0=single,1=double | |
62 fdb Cyls number of cylinders (tracks) | |
63 fcb Sides number of sides | |
64 fcb Verify verify disk writes:0=on | |
65 fdb SectTrk # of sectors per track | |
66 fdb SectTrk0 # of sectors per track (track 0) | |
67 fcb Interlv sector interleave factor | |
68 fcb SAS minimum size of sector allocation | |
69 initsize equ * | |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
70 |
1845 | 71 IFNE DD |
72 name fcs /DD/ | |
73 ELSE | |
74 name fcb 'D,'0+DNum+$80 | |
75 ENDC | |
76 mgrnam fcs /RBF/ | |
77 drvnam fcs /DDisk/ | |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
78 |
1845 | 79 emod |
80 eom equ * | |
81 end | |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
82 |