[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 |
|
---|
[371] | 21 | ;--------------------------------------------------------------------------------
|
---|
| 22 | ;
|
---|
| 23 | ; Assembler Version
|
---|
| 24 | ;
|
---|
| 25 |
|
---|
[358] | 26 | %ifndef VERSION_INC
|
---|
| 27 | %define VERSION_INC
|
---|
| 28 |
|
---|
| 29 |
|
---|
| 30 | %define TITLE_STRING_START "-=XTIDE Universal BIOS "
|
---|
| 31 | %ifdef USE_AT
|
---|
[366] | 32 | %ifdef USE_386
|
---|
[368] | 33 | %define TITLE_STRING_END "(386)=-",NULL
|
---|
[366] | 34 | %else
|
---|
[368] | 35 | %define TITLE_STRING_END "(AT)=-",NULL
|
---|
[366] | 36 | %endif
|
---|
[358] | 37 | %elifdef USE_186
|
---|
[368] | 38 | %define TITLE_STRING_END "(XT+)=-",NULL
|
---|
[358] | 39 | %else
|
---|
[368] | 40 | %define TITLE_STRING_END "(XT)=-",NULL
|
---|
[358] | 41 | %endif
|
---|
| 42 |
|
---|
| 43 | %define TITLE_STRING TITLE_STRING_START, TITLE_STRING_END
|
---|
[521] | 44 | %define ROM_VERSION_STRING "v2.0.0",BETA,"3+ (",__DATE__,")",NULL
|
---|
[473] | 45 | %define FLASH_SIGNATURE "XTIDE203" ; Do not terminate with NULL
|
---|
[358] | 46 |
|
---|
| 47 |
|
---|
| 48 | %endif ; VERSION_INC
|
---|
[371] | 49 |
|
---|
[378] | 50 | %if 0 ; equivalent of a NASM comment block
|
---|
[371] | 51 | ;*/
|
---|
| 52 |
|
---|
| 53 | //--------------------------------------------------------------------------------
|
---|
| 54 | //
|
---|
| 55 | // C/C++ Version
|
---|
| 56 | //
|
---|
| 57 |
|
---|
| 58 | #define BETA " Beta "
|
---|
| 59 |
|
---|
[506] | 60 | #define ROM_VERSION_STRING "v2.0.0" BETA "3 (" __DATE__ ")"
|
---|
[371] | 61 |
|
---|
| 62 | /*
|
---|
[378] | 63 | %endif
|
---|
[371] | 64 | ;*/
|
---|