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