Changeset 88 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc/BootMenu.inc


Ignore:
Timestamp:
Jan 27, 2011, 8:14:13 AM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to XTIDE Universal BIOS:

  • Now uses new libraries (untested)
  • Non-working since code size is too large
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
    62; Description   :   Equates used in Boot Menu.
    73%ifndef BOOTMENU_INC
     
    95
    106; 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)
     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)
    1612
    1713; Function IDs
    18 ID_BOOTFUNC_ROMBOOT     EQU 0       ; ROM boot
     14ID_BOOTFUNC_ROMBOOT             EQU 0   ; ROM boot
    1915
    2016
Note: See TracChangeset for help on using the changeset viewer.