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
RevLine 
[371]1; /*
[358]2; Project name  :   XTIDE Universal BIOS
3; Description   :   Version information.
[371]4
[376]5;
[526]6; XTIDE Universal BIOS and Associated Tools
7; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team.
[376]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.
[526]13;
[376]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
[526]17; GNU General Public License for more details.
[376]18; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19;
20
[584]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
[371]26;--------------------------------------------------------------------------------
27;
28; Assembler Version
29;
30
[358]31%ifndef VERSION_INC
32%define VERSION_INC
33
34
35%define TITLE_STRING_START  "-=XTIDE Universal BIOS "
36%ifdef USE_AT
[366]37    %ifdef USE_386
[368]38        %define TITLE_STRING_END    "(386)=-",NULL
[366]39    %else
[368]40        %define TITLE_STRING_END    "(AT)=-",NULL
[366]41    %endif
[358]42%elifdef USE_186
[368]43    %define TITLE_STRING_END    "(XT+)=-",NULL
[358]44%else
[368]45    %define TITLE_STRING_END    "(XT)=-",NULL
[358]46%endif
47
48%define TITLE_STRING            TITLE_STRING_START, TITLE_STRING_END
[521]49%define ROM_VERSION_STRING      "v2.0.0",BETA,"3+ (",__DATE__,")",NULL
[584]50%define FLASH_SIGNATURE         "XTIDE205"  ; Do not terminate with NULL
[358]51
52
53%endif ; VERSION_INC
[371]54
[378]55%if 0           ; equivalent of a NASM comment block
[371]56;*/
57
58//--------------------------------------------------------------------------------
59//
60// C/C++ Version
61//
62
63#define BETA " Beta "
64
[506]65#define ROM_VERSION_STRING      "v2.0.0" BETA "3 (" __DATE__ ")"
[371]66
67/*
[378]68%endif
[371]69;*/
Note: See TracBrowser for help on using the repository browser.