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
|
---|
11 | MENU_TITLE_LINE_CNT EQU 3 ; Number of title lines
|
---|
12 | MENU_INFO_LINE_CNT EQU 3 ; Number of info lines
|
---|
13 | 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)
|
---|
16 |
|
---|
17 | ; Function IDs
|
---|
18 | ID_BOOTFUNC_ROMBOOT EQU 0 ; ROM boot
|
---|
19 |
|
---|
20 |
|
---|
21 | %endif ; BOOTMENU_INC
|
---|
Note:
See
TracBrowser
for help on using the repository browser.