Changeset 316 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc
- Timestamp:
- Mar 11, 2012, 3:56:34 AM (13 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Inc/RomVars.inc
r277 r316 24 24 .bStealSize resb 1 ; Number of 1kB blocks stolen from 640kB base RAM 25 25 26 .ideVarsBegin: 26 27 .ideVars0 resb IDEVARS_size 27 28 .ideVars1 resb IDEVARS_size … … 32 33 .ideVarsSerialAuto resb IDEVARS_size 33 34 %endif 35 36 .ideVarsEnd: 34 37 endstruc 38 39 %ifndef CHECK_FOR_UNUSED_ENTRYPOINTS 40 %if ROMVARS.ideVarsEnd & 0xff00 <> 0 41 %error ".ideVars structures must fit within the first 256 bytes of the ROM image" 42 %endif 43 %if (ROMVARS.ideVarsEnd - ROMVARS.ideVarsBegin) = 0 44 %error "there must be at lesat one .ideVars structure, it would be bizarre if this were not true, but it is assumed in the ah0h reset code." 45 %endif 46 %endif 35 47 36 48 ; Bit defines for ROMVARS.wFlags
Note:
See TracChangeset
for help on using the changeset viewer.