[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:
|
---|
[614] | 22 | ; XUB208 Added option to skip slave drive detection
|
---|
[601] | 23 | ; XTIDE207 Added device type DEVICE_8BIT_XTIDE_REV2_OLIVETTI
|
---|
[592] | 24 | ; XTIDE206 Added support for Color Themes
|
---|
[584] | 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 |
|
---|
[371] | 29 | ;--------------------------------------------------------------------------------
|
---|
| 30 | ;
|
---|
| 31 | ; Assembler Version
|
---|
| 32 | ;
|
---|
| 33 |
|
---|
[358] | 34 | %ifndef VERSION_INC
|
---|
| 35 | %define VERSION_INC
|
---|
| 36 |
|
---|
| 37 |
|
---|
| 38 | %define TITLE_STRING_START "-=XTIDE Universal BIOS "
|
---|
| 39 | %ifdef USE_AT
|
---|
[366] | 40 | %ifdef USE_386
|
---|
[368] | 41 | %define TITLE_STRING_END "(386)=-",NULL
|
---|
[366] | 42 | %else
|
---|
[368] | 43 | %define TITLE_STRING_END "(AT)=-",NULL
|
---|
[366] | 44 | %endif
|
---|
[358] | 45 | %elifdef USE_186
|
---|
[368] | 46 | %define TITLE_STRING_END "(XT+)=-",NULL
|
---|
[358] | 47 | %else
|
---|
[368] | 48 | %define TITLE_STRING_END "(XT)=-",NULL
|
---|
[358] | 49 | %endif
|
---|
| 50 |
|
---|
| 51 | %define TITLE_STRING TITLE_STRING_START, TITLE_STRING_END
|
---|
[521] | 52 | %define ROM_VERSION_STRING "v2.0.0",BETA,"3+ (",__DATE__,")",NULL
|
---|
[614] | 53 | %define FLASH_SIGNATURE "XUB208" ; Do not terminate with NULL
|
---|
[358] | 54 |
|
---|
| 55 |
|
---|
| 56 | %endif ; VERSION_INC
|
---|
[371] | 57 |
|
---|
[378] | 58 | %if 0 ; equivalent of a NASM comment block
|
---|
[371] | 59 | ;*/
|
---|
| 60 |
|
---|
| 61 | //--------------------------------------------------------------------------------
|
---|
| 62 | //
|
---|
| 63 | // C/C++ Version
|
---|
| 64 | //
|
---|
| 65 |
|
---|
| 66 | #define BETA " Beta "
|
---|
| 67 |
|
---|
[506] | 68 | #define ROM_VERSION_STRING "v2.0.0" BETA "3 (" __DATE__ ")"
|
---|
[371] | 69 |
|
---|
| 70 | /*
|
---|
[378] | 71 | %endif
|
---|
[371] | 72 | ;*/
|
---|