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

Last change on this file since 395 was 378, checked in by gregli@…, 12 years ago

Fixed version.inc to work properly with newer version of NASM.

File size: 1.7 KB
RevLine 
[371]1; /*
[358]2; Project name : XTIDE Universal BIOS
3; Description : Version information.
[371]4
[376]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
[371]21;--------------------------------------------------------------------------------
22;
23; Assembler Version
24;
25
[358]26%ifndef VERSION_INC
27%define VERSION_INC
28
29
30%define TITLE_STRING_START "-=XTIDE Universal BIOS "
31%ifdef USE_AT
[366]32 %ifdef USE_386
[368]33 %define TITLE_STRING_END "(386)=-",NULL
[366]34 %else
[368]35 %define TITLE_STRING_END "(AT)=-",NULL
[366]36 %endif
[358]37%elifdef USE_186
[368]38 %define TITLE_STRING_END "(XT+)=-",NULL
[358]39%else
[368]40 %define TITLE_STRING_END "(XT)=-",NULL
[358]41%endif
42
43%define TITLE_STRING TITLE_STRING_START, TITLE_STRING_END
44%define ROM_VERSION_STRING "v2.0.0",BETA,"1 (",__DATE__,")",NULL
45%define FLASH_SIGNATURE "XTIDE200" ; Do not terminate with NULL
46
47
48%endif ; VERSION_INC
[371]49
[378]50%if 0 ; equivalent of a NASM comment block
[371]51;*/
52
53//--------------------------------------------------------------------------------
54//
55// C/C++ Version
56//
57
58#define BETA " Beta "
59
60#define ROM_VERSION_STRING "v2.0.0" BETA "1 (" __DATE__ ")"
61
62/*
[378]63%endif
[371]64;*/
Note: See TracBrowser for help on using the repository browser.