annotate 3rdparty/fmgrs/msf/msfdesc.asm @ 3162:c44cd20907bd

sysgo.asm: Delete trailing whitespace, fix indent (no functional change) Add comments and vertical whitespace for readability.
author Neal Crook <foofoobedoo@gmail.com>
date Thu, 06 Apr 2017 22:04:46 +0100
parents a7c66ffbec7c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1043
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
1 IFP1
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
2 Level set 2
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 1043
diff changeset
3 use defsfile
1043
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
4 ENDC
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
6 **************************************************************
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
7 * Device Descriptors for MSDos drives
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
8 *
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
9
1043
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
10 mod lenB,namB,DEVIC+OBJCT,REENT+1,mgrB,dvrB
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
11
1043
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
12 fcb $ff all modes
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
13 fcb 7 extended port address
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
14 fdb $ff40 port address
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
15 fcb optB-*-1 option table size
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
16 fcb DT.RBF this is a RBF device
2858
632187a1083e Spell DNum consistently
Tormod Volden <debian.tormod@gmail.com>
parents: 2624
diff changeset
17 fcb DNum this is drive dnum to the controller
1043
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
18 fcb 3 step rate
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
19 fcb %01000000+MSDOS. non standard type
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
20 fcb density
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
21 fdb tracks
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
22 fcb sides
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
23 fcb 1 verify
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
24 optB equ *
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
25
1043
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
26 IFEQ density&%100 ..not hi density
2915
a7c66ffbec7c Demystify string character calculation involving DNum or ITDRV
Tormod Volden <debian.tormod@gmail.com>
parents: 2858
diff changeset
27 namB fcb dnam,'0+DNum+$80 device name
1043
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
28 ELSE
2915
a7c66ffbec7c Demystify string character calculation involving DNum or ITDRV
Tormod Volden <debian.tormod@gmail.com>
parents: 2858
diff changeset
29 namB fcb dnam,'H,'0+DNum+$80 add H to device name
1043
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
30 ENDC
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
31
1043
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
32 mgrB fcs /MSF/
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
33 dvrB fcs /SDISK3/
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
34
1043
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
35 emod
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
36 lenB equ *
938ec7bd301f Now there's a 6809 and 6309 version
boisy
parents: 72
diff changeset
37 end