Changeset 593 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc/BootVars.inc
- Timestamp:
- Jun 30, 2018, 8:27:04 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Inc/BootVars.inc
r592 r593 29 29 BOOT_READ_RETRY_TIMES EQU 3 30 30 31 ; Pre-boot variables. These do not exist after successful boot to OS.32 ; Segment is always 0000h, same as BDA segment33 struc BOOTVARS34 resb 7C00h35 .rgbAtaInfo: ; 7C00h, ATA Information for drive detection36 .rgbBootSect resb 512 ; 7C00h, Boot sector37 resb 256 ; Boot Menu stack38 .rgbMnuStack:39 .dwPostStack resb 4 ; POST stack pointer when entering INT 19h40 %ifdef MODULE_HOTKEYS41 .hotkeyVars resb HOTKEYVARS_size42 %endif43 .rgDrvDetectInfo: ; Array containing DRVDETECTINFO structs44 endstruc45 46 31 47 32 %ifdef MODULE_HOTKEYS … … 66 51 67 52 %endif ; MODULE_HOTKEYS 53 54 55 ; Pre-boot variables. These do not exist after successful boot to OS. 56 ; Segment is always 0000h, same as BDA segment 57 struc BOOTVARS 58 resb 7C00h 59 .rgbAtaInfo: ; 7C00h, ATA Information for drive detection 60 .rgbBootSect resb 512 ; 7C00h, Boot sector 61 resb 256 ; Boot Menu stack 62 .rgbMnuStack: 63 .dwPostStack resb 4 ; POST stack pointer when entering INT 19h 64 %ifdef MODULE_HOTKEYS 65 .hotkeyVars resb HOTKEYVARS_size ; Must be located just before DRVDETECTINFO structs 66 %endif 67 .rgDrvDetectInfo: ; Array containing DRVDETECTINFO structs 68 endstruc 69 68 70 69 71 ; MAX_HARD_DISK_NAME_LENGTH must be defined ahead of the DRVDETECTINFO structure to avoid problems with NASM
Note:
See TracChangeset
for help on using the changeset viewer.