Last change
on this file since 117 was 92, checked in by Tomi Tilli, 14 years ago |
Changes to XTIDE Universal BIOS:
- Removed ROM Boot from boot menu and created a hotkey for it.
|
File size:
599 bytes
|
Rev | Line | |
---|
[88] | 1 | ; Project name : XTIDE Universal BIOS
|
---|
[3] | 2 | ; Description : Equates used in Boot Menu.
|
---|
| 3 | %ifndef BOOTMENU_INC
|
---|
| 4 | %define BOOTMENU_INC
|
---|
| 5 |
|
---|
| 6 | ; Boot menu sizes
|
---|
[88] | 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)
|
---|
[92] | 12 | MENU_SCREEN_BOTTOM_LINES EQU 1
|
---|
[3] | 13 |
|
---|
[92] | 14 | ; Hotkeys
|
---|
| 15 | ROM_BOOT_HOTKEY_SCANCODE EQU 42h ; F8
|
---|
[3] | 16 |
|
---|
| 17 |
|
---|
| 18 | %endif ; BOOTMENU_INC
|
---|
Note:
See
TracBrowser
for help on using the repository browser.