Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | - | 1 | |
2 | ;--------------------------------------------------------------------------- |
||
3 | ; BIOS Working Segment |
||
4 | ;--------------------------------------------------------------------------- |
||
5 | |||
6 | BIOSSEG .EQU $010000 |
||
7 | BIOSWKB .EQU .SEG.TOSSEG ; BIOS working bank |
||
8 | _BS .SET BIOSSEG |
||
9 | _BE .SET BIOSSEG + $FFFF |
||
10 | ;;TO .SET TOSWKM |
||
11 | |||
12 | _BIOS: .SECTION ref_only, common, offset _BS, range _BS _BE ;BIOS working area |
||
13 | _BIOS_START .DS 0 |
||
14 | |||
15 | _vram .DS $0800 |
||
16 | _vattr .DS $0800 |
||
17 | _vpal .DS $0400 |
||
18 | _ioram .DS $0400 |
||
19 | _ioram2 .DS $0800 |
||
20 | |||
21 | _xram .DS $2000 |
||
22 | |||
23 | _dmasave .DS $4800 ; save 36 fdc sec. ($4800) |
||
24 | |||
25 | ;_atamod0 .DS 41 ; model string device ata #0 |
||
26 | ;_ataser0 .DS 21 ; serial string device ata #0 |
||
27 | ;_atarev0 .DS 9 ; revision string device ata #0 |
||
28 | |||
29 | ;_atamod1 .DS 41 ; model string device ata #1 |
||
30 | ;_ataser1 .DS 21 ; serial string device ata #1 |
||
31 | ;_atarev1 .DS 9 ; revision string device ata #1 |
||
32 | |||
33 | ;_usbdsc0 .DS 32 ; identification string device usb #0 |
||
34 | ;_usbdsc1 .DS 32 ; identification string device usb #1 |
||
35 | |||
36 | _BIOS_END .DS 0 |
||
37 | BIOSSIZ .EQU (_BIOS_END - _BIOS_START) |
||
38 | .ENDS |
||
39 | |||
40 | ;DMASEG .EQU $020000 |
||
41 | ;DMASWKB .EQU .SEG.DMASEG ; DMA working bank |
||
42 | ;_DS .SET DMASEG |
||
43 | ;_DE .SET DMASEG + $FFFF |
||
44 | |||
45 | ;_DMAS1: .SECTION ref_only, common, offset _DS, range _DS _DE ;DMA segment |
||
46 | ;_clscache .DS $8000 |
||
47 | ;.ENDS |