Changeset 392 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc/BootVars.inc
- Timestamp:
- Apr 17, 2012, 2:42:54 PM (13 years ago)
- google:author:
- aitotat@gmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Inc/BootVars.inc
r376 r392 30 30 ; Segment is always 0000h, same as BDA segment 31 31 struc BOOTVARS 32 resb 7C00h33 .rgbAtaInfo: ; 7C00h, ATA Information for drive detection34 .rgbBootSect resb 512 ; 7C00h, Boot sector35 resb 256 ; Boot Menu stack32 resb 7C00h 33 .rgbAtaInfo: ; 7C00h, ATA Information for drive detection 34 .rgbBootSect resb 512 ; 7C00h, Boot sector 35 resb 256 ; Boot Menu stack 36 36 .rgbMnuStack: 37 .dwPostStack resb 4 ; POST stack pointer when entering INT 19h 38 .rgBootNfo: ; Array containing BOOTNFO structs 37 .dwPostStack resb 4 ; POST stack pointer when entering INT 19h 38 .hotkeyVars resb HOTKEYVARS_size 39 .rgBootNfo: ; Array containing BOOTNFO structs 39 40 endstruc 41 42 struc HOTKEYVARS 43 .bScancode resb 1 ; Function hotkey scancode 44 .bFlags resb 1 ; Must be just before .bHddLetter! 45 .wHddAndFddLetters: 46 .bHddLetter resb 1 ; Hard Drive letter hotkey (upper case) 47 .bFddLetter resb 1 ; Floppy Drive letter hotkey (upper case) 48 endstruc 49 50 ; Bit defines for HOTKEYVARS.bFlags 51 FLG_HOTKEY_HD_FIRST EQU (1<<0) ; First try to boot from HDD, then FDD 52 40 53 41 54
Note:
See TracChangeset
for help on using the changeset viewer.