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

Last change on this file since 614 was 614, checked in by krille_n_, 3 years ago

Changes:

  • BIOSDRVS should now build again (broke in r613).
  • Removed the NO_ATAID_CORRECTION define from the Tiny build.
  • Added a new configuration option to skip detection of slave drives.
  • Made FLASH_SIGNATURE 2 bytes shorter to free up ROM space.
  • "Auto Configure" in XTIDECFG should now detect if running on an Olivetti M24, AT&T PC6300, Xerox 6060 or Logabax Persona 1600 and automatically select the fastest compatible transfer mode/device type for any IDE controllers found in the system.
  • Cleaned out some duplicate/unused definitions.
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; XUB208    Added option to skip slave drive detection
23; XTIDE207  Added device type DEVICE_8BIT_XTIDE_REV2_OLIVETTI
24; XTIDE206  Added support for Color Themes
25; XTIDE205  Added DEVICE_8BIT_XTCF_PIO16_WITH_BIU_OFFLOAD after other XT-CF
26;           PIO modes (prevents empty indexes in PIO jump tables)
27;
28
29;--------------------------------------------------------------------------------
30;
31; Assembler Version
32;
33
34%ifndef VERSION_INC
35%define VERSION_INC
36
37
38%define TITLE_STRING_START  "-=XTIDE Universal BIOS "
39%ifdef USE_AT
40    %ifdef USE_386
41        %define TITLE_STRING_END    "(386)=-",NULL
42    %else
43        %define TITLE_STRING_END    "(AT)=-",NULL
44    %endif
45%elifdef USE_186
46    %define TITLE_STRING_END    "(XT+)=-",NULL
47%else
48    %define TITLE_STRING_END    "(XT)=-",NULL
49%endif
50
51%define TITLE_STRING            TITLE_STRING_START, TITLE_STRING_END
52%define ROM_VERSION_STRING      "v2.0.0",BETA,"3+ (",__DATE__,")",NULL
53%define FLASH_SIGNATURE         "XUB208"    ; Do not terminate with NULL
54
55
56%endif ; VERSION_INC
57
58%if 0           ; equivalent of a NASM comment block
59;*/
60
61//--------------------------------------------------------------------------------
62//
63// C/C++ Version
64//
65
66#define BETA " Beta "
67
68#define ROM_VERSION_STRING      "v2.0.0" BETA "3 (" __DATE__ ")"
69
70/*
71%endif
72;*/
Note: See TracBrowser for help on using the repository browser.