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

Last change on this file since 601 was 601, checked in by krille_n_, 5 years ago

Changes:

  • Building the BIOS now works again.
  • Added a new IDE device type/transfer mode for use only with XT-IDE rev 2+ (or Chuck(G)-modded rev 1) cards installed in any of the following machines: Olivetti M24, AT&T PC6300, Xerox 6060 and Logabax Persona 1600. This new transfer mode is slightly faster than the regular XT-IDE rev 1 device type and requires that the card is configured for High Speed mode (or, in case of the card being a rev 1 card, has the Chuck(G) mod done). The new device type is called "XTIDE rev 2 (Olivetti M24)" in XTIDECFG.
  • Made some minor improvements to the library code that handles 'Drive Not Ready' errors in XTIDECFG.
  • Optimizations.
File size: 2.0 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; XTIDE207  Added device type DEVICE_8BIT_XTIDE_REV2_OLIVETTI
23; XTIDE206  Added support for Color Themes
24; XTIDE205  Added DEVICE_8BIT_XTCF_PIO16_WITH_BIU_OFFLOAD after other XT-CF
25;           PIO modes (prevents empty indexes in PIO jump tables)
26;
27
28;--------------------------------------------------------------------------------
29;
30; Assembler Version
31;
32
33%ifndef VERSION_INC
34%define VERSION_INC
35
36
37%define TITLE_STRING_START  "-=XTIDE Universal BIOS "
38%ifdef USE_AT
39    %ifdef USE_386
40        %define TITLE_STRING_END    "(386)=-",NULL
41    %else
42        %define TITLE_STRING_END    "(AT)=-",NULL
43    %endif
44%elifdef USE_186
45    %define TITLE_STRING_END    "(XT+)=-",NULL
46%else
47    %define TITLE_STRING_END    "(XT)=-",NULL
48%endif
49
50%define TITLE_STRING            TITLE_STRING_START, TITLE_STRING_END
51%define ROM_VERSION_STRING      "v2.0.0",BETA,"3+ (",__DATE__,")",NULL
52%define FLASH_SIGNATURE         "XTIDE207"  ; Do not terminate with NULL
53
54
55%endif ; VERSION_INC
56
57%if 0           ; equivalent of a NASM comment block
58;*/
59
60//--------------------------------------------------------------------------------
61//
62// C/C++ Version
63//
64
65#define BETA " Beta "
66
67#define ROM_VERSION_STRING      "v2.0.0" BETA "3 (" __DATE__ ")"
68
69/*
70%endif
71;*/
Note: See TracBrowser for help on using the repository browser.