source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Inc/RomVars.inc@ 191

Last change on this file since 191 was 181, checked in by krille_n_@…, 13 years ago

Changes to all parts of the project:

  • Size optimizations.
  • Added a define (EXCLUDE_FROM_XTIDECFG) to exclude unused library code from XTIDECFG.
  • Tried to minimize time spent with interrupts disabled.
  • Some minor attempts to improve speed (reordering instructions etc).
  • Tried to improve readability, did some cleanup and fixed some errors in comments.
File size: 2.6 KB
Line 
1; Project name : XTIDE Universal BIOS
2; Description : Defines for ROMVARS struct containing variables stored
3; in BIOS ROM.
4%ifndef ROMVARS_INC
5%define ROMVARS_INC
6
7; ROM Variables. Written to the ROM image before flashing.
8struc ROMVARS
9 .wRomSign resb 2 ; ROM Signature (AA55h)
10 .bRomSize resb 1 ; ROM size in 512 byte blocks
11 .rgbJump resb 3 ; First instruction to ROM init (jmp)
12
13 .rgbSign resb 8 ; Signature for XTIDE Configurator Program
14 .szTitle resb 31 ; BIOS title string
15 .szVersion resb 25 ; BIOS version string
16
17 .wFlags resb 2 ; Word for ROM flags
18 .wDisplayMode resb 2 ; Display mode for boot menu
19 .wBootTimeout resb 2 ; Boot Menu selection timeout in system timer ticks
20 .bIdeCnt resb 1 ; Number of available IDE controllers
21 .bBootDrv resb 1 ; Boot Menu default drive
22 .bMinFddCnt resb 1 ; Minimum number of Floppy Drives
23 .bStealSize resb 1 ; Number of 1kB blocks stolen from 640kB base RAM
24
25 .ideVars0 resb IDEVARS_size
26 .ideVars1 resb IDEVARS_size
27 .ideVars2 resb IDEVARS_size
28 .ideVars3 resb IDEVARS_size
29
30%ifdef MODULE_SERIAL
31 .ideVarsSerialAuto resb IDEVARS_size
32%endif
33endstruc
34
35; Bit defines for ROMVARS.wFlags
36FLG_ROMVARS_FULLMODE EQU (1<<0) ; Full operating mode (steals base RAM, supports EBIOS etc.)
37FLG_ROMVARS_DRVXLAT EQU (1<<2) ; Enable drive number translation
38FLG_ROMVARS_MODULE_SERIAL EQU (1<<3)
39FLG_ROMVARS_MODULE_EBIOS EQU (1<<4)
40
41; Boot Menu Display Modes (see Assembly Library Display.inc for standard modes)
42DEFAULT_TEXT_MODE EQU 4
43
44
45; Controller specific variables
46struc IDEVARS
47 .wPort resb 2 ; IDE Base Port for Command Block (usual) Registers
48 .wPortCtrl resb 2 ; IDE Base Port for Control Block Registers
49 .bDevice resb 1 ; Device type
50 .bIRQ resb 1 ; Interrupt Request Number
51 .drvParamsMaster resb DRVPARAMS_size
52 .drvParamsSlave resb DRVPARAMS_size
53endstruc
54
55; Device types for IDEVARS.bDevice
56DEVICE_8BIT_DUAL_PORT_XTIDE EQU (0<<1)
57DEVICE_XTIDE_WITH_REVERSED_A3_AND_A0 EQU (1<<1)
58DEVICE_8BIT_SINGLE_PORT EQU (2<<1)
59DEVICE_16BIT_ATA EQU (3<<1)
60DEVICE_32BIT_ATA EQU (4<<1)
61DEVICE_SERIAL_PORT EQU (5<<1)
62
63; Master/Slave drive specific parameters
64struc DRVPARAMS
65 .wFlags resb 2 ; Drive flags
66 .wCylinders resb 2 ; User specified cylinders (1...16383)
67 .wHeadsAndSectors:
68 .bHeads resb 1 ; User specified Heads (1...16)
69 .bSect resb 1 ; User specified Sectors per track (1...63)
70endstruc
71
72; Bit defines for DRVPARAMS.wFlags
73FLG_DRVPARAMS_USERCHS EQU (1<<0) ; User specified P-CHS values
74FLG_DRVPARAMS_BLOCKMODE EQU (1<<1) ; Enable Block mode transfers
75
76
77%endif ; ROMVARS_INC
Note: See TracBrowser for help on using the repository browser.