Changeset 492 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc/RamVars.inc
- Timestamp:
- Dec 21, 2012, 1:01:55 AM (12 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Inc/RamVars.inc
r444 r492 26 26 %endif 27 27 28 %ifdef MODULE_SERIAL_FLOPPY 29 %define NEED_XLATEVARS 30 %endif 31 32 %ifdef MODULE_DRIVEXLATE 33 %define NEED_XLATEVARS 34 %endif 35 36 28 37 ; RAM Variables. 29 38 ; Variables should be kept to minimum since they might be located … … 50 59 51 60 ; Variables for drive number translation 52 %ifdef MODULE_HOTKEYS61 %ifdef NEED_XLATEVARS 53 62 .xlateVars resb XLATEVARS_size 54 63 %endif … … 60 69 61 70 62 71 %ifdef NEED_XLATEVARS 63 72 ; Variables for translating drive numbers. 64 %ifdef MODULE_HOTKEYS65 73 struc XLATEVARS 66 74 %ifdef MODULE_SERIAL_FLOPPY … … 69 77 ; and number of drives (low order bit, max 2 drives supported). 70 78 ; During initialization, until the end of DetectDrives_FromAllIDEControllers, 71 ; this byte contains the raw number of floppy drives seen (using .bFlopCreateCnt) 79 ; this byte contains the raw number of floppy drives seen 80 ; (using .bFlopCreateCnt) 72 81 %else 73 82 resb 1 ; alignment 74 83 %endif 84 85 %ifdef MODULE_DRIVEXLATE 75 86 .bXlatedDrv resb 1 ; Drive number after translation 76 87 .wFDandHDswap: 77 88 .bFDSwap resb 1 ; Floppy Drive to swap to 00h and vice versa 78 89 .bHDSwap resb 1 ; Hard Drive to swap to 80h and vice versa 90 %else 91 resb 1 ; alignment 92 %endif 79 93 endstruc 80 94 %endif 81 82 95 83 96 %ifdef MODULE_SERIAL_FLOPPY
Note:
See TracChangeset
for help on using the changeset viewer.