Changeset 284 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS
- Timestamp:
- Feb 29, 2012, 6:13:11 PM (13 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Inc/BootMenu.inc
r254 r284 19 19 ; Boot Menu Information Table. These are generated for all XTIDE Universal 20 20 ; BIOS drives. Available only until boot is successfull. 21 MAX_HARD_DISK_NAME_LENGTH EQU 26; Bytes reserved for drive name21 MAX_HARD_DISK_NAME_LENGTH EQU 30 ; Bytes reserved for drive name 22 22 23 23 struc BOOTMENUINFO 24 24 .szDrvName resb MAX_HARD_DISK_NAME_LENGTH 25 25 resb 2 ; Zero word (ensures string terminates) 26 resb 8; padding to make BOOTMENUINFO size an even multiple of DPT size26 resb 4 ; padding to make BOOTMENUINFO size an even multiple of DPT size 27 27 endstruc 28 28 … … 30 30 31 31 %ifndef CHECK_FOR_UNUSED_ENTRYPOINTS 32 33 %if MAX_HARD_DISK_NAME_LENGTH % 2 <> 0 34 %error "MAX_HARD_DISK_NAME_LENGTH needs to be a multiple of 2, memory is moved with word operations." 35 %endif 32 36 33 37 %if BOOTMENUINFO_size % LARGEST_DPT_SIZE <> 0
Note:
See TracChangeset
for help on using the changeset viewer.