Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | - | 1 | ;; name: dpdsk.inc |
2 | ;; rev.: 2016/03/30 |
||
3 | ;; o.s. 65C816 version v1.0 |
||
4 | |||
5 | .LIST on |
||
6 | |||
7 | ; direct page for bios disk data |
||
8 | _DPDSK: .SECTION page0, ref_only, common, offset 0 ;DISK ID D.P. |
||
9 | |||
10 | ;.ABSOLUTE |
||
11 | ;.ORG 0x00 |
||
12 | |||
13 | _atamod0 .DS 41 ; model string device ata #0 |
||
14 | _ataser0 .DS 21 ; serial string device ata #0 |
||
15 | _atarev0 .DS 9 ; revision string device ata #0 |
||
16 | |||
17 | _atamod1 .DS 41 ; model string device ata #1 |
||
18 | _ataser1 .DS 21 ; serial string device ata #1 |
||
19 | _atarev1 .DS 9 ; revision string device ata #1 |
||
20 | |||
21 | _usbdsc0 .DS 32 ; identification string device usb #0 |
||
22 | _usbdsc1 .DS 32 ; identification string device usb #1 |
||
23 | |||
24 | _maxsecs .DS 16 ; disk max. sector's |
||
25 | |||
26 | _DPDSK_END .DS 0 |
||
27 | |||
28 | ;.RELATIVE |
||
29 | |||
30 | .ENDS |
||
31 | .LIST off |