annotate level1/modules/dwdesc.asm @ 2254:254f75634e96

Use IntMasks instead of $50
author boisy
date Sun, 27 Dec 2009 03:34:22 +0000
parents c8858ca0cb47
children 79d307ddf47f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2180
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
1 ********************************************************************
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
2 * DWDesc - DriveWire Device Descriptor Template
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
3 *
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
4 * $Id$
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
5 *
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
6 * Edt/Rev YYYY/MM/DD Modified by
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
7 * Comment
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
8 * ------------------------------------------------------------------
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
9 * 0 2003/03/28 Boisy G. Pitre
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
10 * Created.
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
11
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
12 nam DWDesc
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
13 ttl DriveWire Device Descriptor Template
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
14
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
15 ifp1
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
16 use defsfile
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
17 endc
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
18
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
19 tylg set Devic+Objct
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
20 atrv set ReEnt+rev
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
21 rev set $01
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
22
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
23 DNum set 0
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
24 Type set TYP.HARD
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
25 Density set 0
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
26 Step set 0
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
27 Cyls set 1024
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
28 Sides set 1
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
29 Verify set 1
2189
c8858ca0cb47 18 sectors per track now so that os9gen will put boot track in correct place
boisy
parents: 2180
diff changeset
30 SectTrk set 18
c8858ca0cb47 18 sectors per track now so that os9gen will put boot track in correct place
boisy
parents: 2180
diff changeset
31 SectTrk0 set 18
2180
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
32 Interlv set 0
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
33 SAS set 8
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
34
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
35 mod eom,name,tylg,atrv,mgrnam,drvnam
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
36
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
37 fcb DIR.!ISIZ.!SHARE.!PEXEC.!PWRIT.!PREAD.!EXEC.!UPDAT. mode byte
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
38 fcb HW.Page extended controller address
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
39 fdb $0000 physical controller address
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
40 fcb initsize-*-1 initilization table size
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
41 fcb DT.RBF device type:0=scf,1=rbf,2=pipe,3=scf
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
42 fcb dnum drive number
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
43 fcb Step step rate
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
44 fcb Type drive device type
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
45 fcb Density media density:0=single,1=double
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
46 fdb Cyls number of cylinders (tracks)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
47 fcb Sides number of sides
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
48 fcb Verify verify disk writes:0=on
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
49 fdb SectTrk # of sectors per track
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
50 fdb SectTrk0 # of sectors per track (track 0)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
51 fcb Interlv sector interleave factor
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
52 fcb SAS minimum size of sector allocation
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
53 initsize equ *
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
54
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
55 IFNE DD
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
56 name fcs /DD/
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
57 ELSE
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
58 name fcc /X/
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
59 fcb 176+dnum
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
60 ENDC
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
61 mgrnam fcs /RBF/
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
62 drvnam fcs /rbdw3/
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
63
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
64 emod
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
65 eom equ *
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
66 end
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents:
diff changeset
67