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

Last change on this file since 89 was 88, checked in by Tomi Tilli, 14 years ago

Changes to XTIDE Universal BIOS:

  • Now uses new libraries (untested)
  • Non-working since code size is too large
File size: 572 bytes
RevLine 
[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]7BOOT_MENU_TITLE_LINES EQU 2 ; Number of title lines
8BOOT_MENU_INFO_LINES EQU 3 ; Number of info lines
9BOOT_MENU_TITLE_AND_INFO_LINES EQU (BOOT_MENU_TITLE_LINES | (BOOT_MENU_INFO_LINES<<8))
10BOOT_MENU_WIDTH EQU 40 ; Menu width in characters
11BOOT_MENU_HEIGHT_WITHOUT_ITEMS EQU (BOOT_MENU_TITLE_LINES + BOOT_MENU_INFO_LINES + 4)
[3]12
13; Function IDs
[88]14ID_BOOTFUNC_ROMBOOT EQU 0 ; ROM boot
[3]15
16
17%endif ; BOOTMENU_INC
Note: See TracBrowser for help on using the repository browser.