Changeset 555 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc
- Timestamp:
- Jun 15, 2013, 1:39:33 PM (11 years ago)
- google:author:
- aitotat@gmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Inc/RamVars.inc
r526 r555 37 37 struc RAMVARS 38 38 %ifdef RELOCATE_INT13H_STACK 39 resb 25239 resb 252 40 40 .dwStackChangeDSDI: 41 .wStackChangeDI resb 2 ; Used during stack42 .wStackChangeDS resb 2 ; switching only43 .rgbTopOfStack: ; 256 bytes of stack44 .fpInt13hEntryStack resb 441 .wStackChangeDI resb 2 ; Used during stack 42 .wStackChangeDS resb 2 ; switching only 43 .rgbTopOfStack: ; 256 bytes of stack 44 .fpInt13hEntryStack resb 4 45 45 %endif 46 . wDrvDetectSignature: ; Signature when BIOS is in drive detection mode47 . fpOldI13h resb 4 ; Far pointer to old INT 13h handler48 .wSignature resb 2 ; Sign for finding stolen 1...64 kiB49 .bTimeoutTicksLeft resb 150 .bLastTimeoutUpdate resb 146 .fpOldI13h resb 4 ; Far pointer to old INT 13h handler 47 .wDrvDetectSignature resb 2 ; Signature when BIOS is in drive detection mode 48 .wSignature resb 2 ; Sign for finding stolen 1...64 kiB 49 .bTimeoutTicksLeft resb 1 50 .bLastTimeoutUpdate resb 1 51 51 52 52 .wFirstDrvAndCount: 53 .bFirstDrv resb 1 ; Number of first drive for this BIOS54 .wDrvCntAndFlopCnt: ; Both the hard disk and floppy counts in one word55 ; (yes, misaligned, but it is only used this way during initialization)56 .bDrvCnt resb 1 ; Number of drives handled by this BIOS53 .bFirstDrv resb 1 ; Number of first drive for this BIOS 54 .wDrvCntAndFlopCnt: ; Both the hard disk and floppy counts in one word 55 ; (yes, misaligned, but it is only used this way during initialization) 56 .bDrvCnt resb 1 ; Number of drives handled by this BIOS 57 57 58 58 ; Variables for drive number translation 59 59 %ifdef NEED_XLATEVARS 60 .xlateVars resb XLATEVARS_size60 .xlateVars resb XLATEVARS_size 61 61 %endif 62 62 endstruc
Note:
See TracChangeset
for help on using the changeset viewer.