Skip to content

Commit

Permalink
Getting ready to release v9.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
vhelin committed Dec 22, 2019
1 parent 703429a commit 48da717
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG
Expand Up @@ -3,7 +3,7 @@
1... WLA GB-Z80/Z80/6502/65C02/6510/65816/6800/6801/6809/8008/8080/HUC6280/SPC-700 History
------------------------------------------------------------------------------------------

v9.10 (14-Dec-2019) [808] Added support for I8080.
v9.10 (22-Dec-2019) [808] Added support for I8080.
[658] Fixed SNES ROM checksum calculation.
[658] Fixed 24-bit non-label symbols in NO$SNES symbol
file generator.
Expand Down Expand Up @@ -1103,7 +1103,7 @@ v1.0 (10-Jul-2000) The first public release.
------------------------------------------------------------------------------


v5.12 (11-Dec-2019) Relaxed the checks regarding misc bits (e.g., SNES ROM
v5.12 (22-Dec-2019) Relaxed the checks regarding misc bits (e.g., SNES ROM
mode, GB checksum...) when loading the object files.
Fixed pending, relative 16-bit and 24-bit calculations.

Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Expand Up @@ -18,7 +18,7 @@
project = u'wla-dx'
copyright = u'2019, vhelin'
version = '9.10' # The short X.Y version, can be used with |version|
release = '9.10a' # The full version, including alpha/beta/rc tags, |release|
release = '9.10' # The full version, including alpha/beta/rc tags, |release|
language = None
#today = ''
#today_fmt = '%B %d, %Y'
Expand Down
6 changes: 3 additions & 3 deletions main.c
Expand Up @@ -40,8 +40,8 @@ FILE *file_out_ptr = NULL;
__near long __stack = 200000;
#endif

char version_string[] = "$VER: wla-" WLA_NAME " 9.10a (14.12.2019)";
char wla_version[] = "9.10a";
char version_string[] = "$VER: wla-" WLA_NAME " 9.10 (22.12.2019)";
char wla_version[] = "9.10";

char *tmp_name = NULL;

Expand Down Expand Up @@ -126,7 +126,7 @@ int main(int argc, char *argv[]) {
}

if (output_format == OUTPUT_NONE || parse_flags_result == FAILED) {
printf("\nWLA " ARCH_STR " Macro Assembler v9.10a\n");
printf("\nWLA " ARCH_STR " Macro Assembler v9.10\n");
printf("Written by Ville Helin in 1998-2008 - In GitHub since 2014: https://github.com/vhelin/wla-dx\n");
#ifdef WLA_DEBUG
printf("*** WLA_DEBUG defined - this executable is running in DEBUG mode ***\n");
Expand Down
2 changes: 1 addition & 1 deletion wlalink/main.c
Expand Up @@ -25,7 +25,7 @@
#define WLALINK_DEBUG
*/

char version_string[] = "$VER: wlalink 5.12a (11.12.2019)";
char version_string[] = "$VER: wlalink 5.12 (22.12.2019)";

#ifdef AMIGA
long __stack = 200000;
Expand Down

0 comments on commit 48da717

Please sign in to comment.