Last change
on this file since 373 was 371, checked in by gregli@…, 13 years ago |
Small changes. 1) Changes biosdrvs.com to output CR+LF instead of LF+CR, consistent with DOS/Windows, but I did not update the Assembly Library as this would break the Configurator; 2) Put a C/C++ section in Version.inc for the serial server; 3) Configurator defaults the EEPROM address after scanning for a EEPROM in memory (as it does for loading the BIOS from ROM); 4) Added a command to the Configurator main menu to save chages to the file from which it was loaded (if it was loaded form a file), which is symmetric with the Load command and more discoverable than exiting DOS and then being prompted (which is still there too, if changes are unsaved).
|
File size:
1012 bytes
|
Rev | Line | |
---|
[371] | 1 | ; /*
|
---|
[358] | 2 | ; Project name : XTIDE Universal BIOS
|
---|
| 3 | ; Description : Version information.
|
---|
[371] | 4 |
|
---|
| 5 | ;--------------------------------------------------------------------------------
|
---|
| 6 | ;
|
---|
| 7 | ; Assembler Version
|
---|
| 8 | ;
|
---|
| 9 |
|
---|
[358] | 10 | %ifndef VERSION_INC
|
---|
| 11 | %define VERSION_INC
|
---|
| 12 |
|
---|
| 13 |
|
---|
| 14 | %define TITLE_STRING_START "-=XTIDE Universal BIOS "
|
---|
| 15 | %ifdef USE_AT
|
---|
[366] | 16 | %ifdef USE_386
|
---|
[368] | 17 | %define TITLE_STRING_END "(386)=-",NULL
|
---|
[366] | 18 | %else
|
---|
[368] | 19 | %define TITLE_STRING_END "(AT)=-",NULL
|
---|
[366] | 20 | %endif
|
---|
[358] | 21 | %elifdef USE_186
|
---|
[368] | 22 | %define TITLE_STRING_END "(XT+)=-",NULL
|
---|
[358] | 23 | %else
|
---|
[368] | 24 | %define TITLE_STRING_END "(XT)=-",NULL
|
---|
[358] | 25 | %endif
|
---|
| 26 |
|
---|
| 27 | %define TITLE_STRING TITLE_STRING_START, TITLE_STRING_END
|
---|
| 28 | %define ROM_VERSION_STRING "v2.0.0",BETA,"1 (",__DATE__,")",NULL
|
---|
| 29 | %define FLASH_SIGNATURE "XTIDE200" ; Do not terminate with NULL
|
---|
| 30 |
|
---|
| 31 |
|
---|
| 32 | %endif ; VERSION_INC
|
---|
[371] | 33 |
|
---|
| 34 | %comment
|
---|
| 35 | ;*/
|
---|
| 36 |
|
---|
| 37 | //--------------------------------------------------------------------------------
|
---|
| 38 | //
|
---|
| 39 | // C/C++ Version
|
---|
| 40 | //
|
---|
| 41 |
|
---|
| 42 | #define BETA " Beta "
|
---|
| 43 |
|
---|
| 44 | #define ROM_VERSION_STRING "v2.0.0" BETA "1 (" __DATE__ ")"
|
---|
| 45 |
|
---|
| 46 | /*
|
---|
| 47 | %endcomment
|
---|
| 48 | ;*/
|
---|
Note:
See
TracBrowser
for help on using the repository browser.