source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Inc/BootMenu.inc@ 23

Last change on this file since 23 was 3, checked in by Tomi Tilli, 14 years ago
File size: 639 bytes
Line 
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
6; Description : Equates used in Boot Menu.
7%ifndef BOOTMENU_INC
8%define BOOTMENU_INC
9
10; Boot menu sizes
11MENU_TITLE_LINE_CNT EQU 3 ; Number of title lines
12MENU_INFO_LINE_CNT EQU 3 ; Number of info lines
13MENU_WIDTH_IN_CHARS EQU 38 ; Menu width in characters
14MENU_HEIGHT_IN_CHARS_WITH_INFO EQU (MENU_TITLE_LINE_CNT + MENU_INFO_LINE_CNT + 4)
15MENU_HEIGHT_IN_CHARS_WITHOUT_INFO EQU (MENU_TITLE_LINE_CNT + 3)
16
17; Function IDs
18ID_BOOTFUNC_ROMBOOT EQU 0 ; ROM boot
19
20
21%endif ; BOOTMENU_INC
Note: See TracBrowser for help on using the repository browser.