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

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

Changes to XTIDE Universal BIOS:

  • Hopefully fixed problems with recent changes to AH=00h.
  • Timeout error code is no longer displayed when trying to boot from floppy drive.
File size: 1.7 KB
Line 
1; /*
2; Project name : XTIDE Universal BIOS
3; Description : Version information.
4
5;
6; XTIDE Universal BIOS and Associated Tools
7; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
8;
9; This program is free software; you can redistribute it and/or modify
10; it under the terms of the GNU General Public License as published by
11; the Free Software Foundation; either version 2 of the License, or
12; (at your option) any later version.
13;
14; This program is distributed in the hope that it will be useful,
15; but WITHOUT ANY WARRANTY; without even the implied warranty of
16; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17; GNU General Public License for more details.
18; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19;
20
21;--------------------------------------------------------------------------------
22;
23; Assembler Version
24;
25
26%ifndef VERSION_INC
27%define VERSION_INC
28
29
30%define TITLE_STRING_START "-=XTIDE Universal BIOS "
31%ifdef USE_AT
32 %ifdef USE_386
33 %define TITLE_STRING_END "(386)=-",NULL
34 %else
35 %define TITLE_STRING_END "(AT)=-",NULL
36 %endif
37%elifdef USE_186
38 %define TITLE_STRING_END "(XT+)=-",NULL
39%else
40 %define TITLE_STRING_END "(XT)=-",NULL
41%endif
42
43%define TITLE_STRING TITLE_STRING_START, TITLE_STRING_END
44%define ROM_VERSION_STRING "v2.0.0",BETA,"3+ (",__DATE__,")",NULL
45%define FLASH_SIGNATURE "XTIDE203" ; Do not terminate with NULL
46
47
48%endif ; VERSION_INC
49
50%if 0 ; equivalent of a NASM comment block
51;*/
52
53//--------------------------------------------------------------------------------
54//
55// C/C++ Version
56//
57
58#define BETA " Beta "
59
60#define ROM_VERSION_STRING "v2.0.0" BETA "3 (" __DATE__ ")"
61
62/*
63%endif
64;*/
Note: See TracBrowser for help on using the repository browser.