Changeset 258 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc/RamVars.inc
- Timestamp:
- Feb 22, 2012, 7:01:53 PM (13 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Inc/RamVars.inc
r248 r258 11 11 struc XLATEVARS 12 12 .wFDandHDswap: 13 .bFDSwap resb 1 ; Floppy Drive to swap to 00h and vice versa 14 .bHDSwap resb 1 ; Hard Drive to swap to 80h and vice versa 15 .bXlatedDrv resb 1 ; Drive number after translation 16 resb 1 ; alignment 13 .bFDSwap resb 1 ; Floppy Drive to swap to 00h and vice versa 14 .bHDSwap resb 1 ; Hard Drive to swap to 80h and vice versa 15 .bXlatedDrv resb 1 ; Drive number after translation 16 %ifdef MODULE_SERIAL_FLOPPY 17 .bFlopCreateCnt: 18 .bFlopCntAndFirst resb 1 ; Normally, packed starting floppy drive number (high order 7 bits) 19 ; and number of drives (low order bit, max 2 drives supported). 20 ; During initialization, until the end of DetectDrives_FromAllIDEControllers, 21 ; this byte contains the raw number of floppy drives seen (using .bFlopCreateCnt) 22 %else 23 resb 1 ; alignment 24 %endif 17 25 endstruc 18 26 … … 27 35 28 36 .wDrvCntAndFirst: 37 .bFirstDrv resb 1 ; Number of first drive for this BIOS 29 38 .bDrvCnt resb 1 ; Number of drives handled by this BIOS 30 .bFirstDrv resb 1 ; Number of first drive for this BIOS31 39 32 40 ; Variables for drive number translation
Note:
See TracChangeset
for help on using the changeset viewer.