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

Last change on this file since 584 was 584, checked in by aitotat, 9 years ago

Changes to XTIDE Universal BIOS:

  • Added support for Lo-tech 8-bit IDE Adapter (untested)
File size: 1.9 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-2013 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; Flash signature revisions:
22; XTIDE205  Added DEVICE_8BIT_XTCF_PIO16_WITH_BIU_OFFLOAD after other XT-CF
23;           PIO modes (prevents empty indexes in PIO jump tables)
24;
25
26;--------------------------------------------------------------------------------
27;
28; Assembler Version
29;
30
31%ifndef VERSION_INC
32%define VERSION_INC
33
34
35%define TITLE_STRING_START  "-=XTIDE Universal BIOS "
36%ifdef USE_AT
37    %ifdef USE_386
38        %define TITLE_STRING_END    "(386)=-",NULL
39    %else
40        %define TITLE_STRING_END    "(AT)=-",NULL
41    %endif
42%elifdef USE_186
43    %define TITLE_STRING_END    "(XT+)=-",NULL
44%else
45    %define TITLE_STRING_END    "(XT)=-",NULL
46%endif
47
48%define TITLE_STRING            TITLE_STRING_START, TITLE_STRING_END
49%define ROM_VERSION_STRING      "v2.0.0",BETA,"3+ (",__DATE__,")",NULL
50%define FLASH_SIGNATURE         "XTIDE205"  ; Do not terminate with NULL
51
52
53%endif ; VERSION_INC
54
55%if 0           ; equivalent of a NASM comment block
56;*/
57
58//--------------------------------------------------------------------------------
59//
60// C/C++ Version
61//
62
63#define BETA " Beta "
64
65#define ROM_VERSION_STRING      "v2.0.0" BETA "3 (" __DATE__ ")"
66
67/*
68%endif
69;*/
Note: See TracBrowser for help on using the repository browser.