Mercurial > hg > Members > kono > nitros9-code
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 |
rev | line source |
---|---|
1043 | 1 IFP1 |
2 Level set 2 | |
2624 | 3 use defsfile |
1043 | 4 ENDC |
0 | 5 |
6 ************************************************************** | |
7 * Device Descriptors for MSDos drives | |
8 * | |
9 | |
1043 | 10 mod lenB,namB,DEVIC+OBJCT,REENT+1,mgrB,dvrB |
0 | 11 |
1043 | 12 fcb $ff all modes |
13 fcb 7 extended port address | |
14 fdb $ff40 port address | |
15 fcb optB-*-1 option table size | |
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 | 18 fcb 3 step rate |
19 fcb %01000000+MSDOS. non standard type | |
20 fcb density | |
21 fdb tracks | |
22 fcb sides | |
23 fcb 1 verify | |
24 optB equ * | |
0 | 25 |
1043 | 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 | 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 | 30 ENDC |
0 | 31 |
1043 | 32 mgrB fcs /MSF/ |
33 dvrB fcs /SDISK3/ | |
0 | 34 |
1043 | 35 emod |
36 lenB equ * | |
37 end |