source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Inc/Version.inc @ 358

Last change on this file since 358 was 358, checked in by aitotat@…, 12 years ago

Changes to XTIDE Universal BIOS:

  • Moved BIOS title and version strings to Version.inc.
  • Moved LBA to L-CHS conversion function to LbaAssist.asm.
File size: 572 bytes
Line 
1; Project name  :   XTIDE Universal BIOS
2; Description   :   Version information.
3%ifndef VERSION_INC
4%define VERSION_INC
5
6
7%define TITLE_STRING_START  "-=XTIDE Universal BIOS "
8%ifdef USE_AT
9    %define TITLE_STRING_END    "(AT=-)",NULL
10%elifdef USE_186
11    %define TITLE_STRING_END    "(XT+=-)",NULL
12%else
13    %define TITLE_STRING_END    "(XT=-)",NULL
14%endif
15
16%define TITLE_STRING            TITLE_STRING_START, TITLE_STRING_END
17%define ROM_VERSION_STRING      "v2.0.0",BETA,"1 (",__DATE__,")",NULL
18%define FLASH_SIGNATURE         "XTIDE200"  ; Do not terminate with NULL
19
20
21%endif ; VERSION_INC
Note: See TracBrowser for help on using the repository browser.