Changeset 88 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc/BootMenu.inc
- Timestamp:
- Jan 27, 2011, 8:14:13 AM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Inc/BootMenu.inc
r3 r88 1 ; File name : BootMenu.inc 2 ; Project name : IDE BIOS 3 ; Created date : 26.3.2010 4 ; Last update : 26.3.2010 5 ; Author : Tomi Tilli 1 ; Project name : XTIDE Universal BIOS 6 2 ; Description : Equates used in Boot Menu. 7 3 %ifndef BOOTMENU_INC … … 9 5 10 6 ; Boot menu sizes 11 MENU_TITLE_LINE_CNT EQU 3; Number of title lines12 MENU_INFO_LINE_CNT EQU 3; Number of info lines13 MENU_WIDTH_IN_CHARS EQU 38 ; Menu width in characters 14 MENU_HEIGHT_IN_CHARS_WITH_INFO EQU (MENU_TITLE_LINE_CNT + MENU_INFO_LINE_CNT + 4) 15 MENU_HEIGHT_IN_CHARS_WITHOUT_INFO EQU (MENU_TITLE_LINE_CNT + 3)7 BOOT_MENU_TITLE_LINES EQU 2 ; Number of title lines 8 BOOT_MENU_INFO_LINES EQU 3 ; Number of info lines 9 BOOT_MENU_TITLE_AND_INFO_LINES EQU (BOOT_MENU_TITLE_LINES | (BOOT_MENU_INFO_LINES<<8)) 10 BOOT_MENU_WIDTH EQU 40 ; Menu width in characters 11 BOOT_MENU_HEIGHT_WITHOUT_ITEMS EQU (BOOT_MENU_TITLE_LINES + BOOT_MENU_INFO_LINES + 4) 16 12 17 13 ; Function IDs 18 ID_BOOTFUNC_ROMBOOT EQU 0; ROM boot14 ID_BOOTFUNC_ROMBOOT EQU 0 ; ROM boot 19 15 20 16
Note:
See TracChangeset
for help on using the changeset viewer.