Skip to content

Commit 48da717

Browse files
committed
Getting ready to release v9.10.
1 parent 703429a commit 48da717

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
1... WLA GB-Z80/Z80/6502/65C02/6510/65816/6800/6801/6809/8008/8080/HUC6280/SPC-700 History
44
------------------------------------------------------------------------------------------
55

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

11051105

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

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
project = u'wla-dx'
1919
copyright = u'2019, vhelin'
2020
version = '9.10' # The short X.Y version, can be used with |version|
21-
release = '9.10a' # The full version, including alpha/beta/rc tags, |release|
21+
release = '9.10' # The full version, including alpha/beta/rc tags, |release|
2222
language = None
2323
#today = ''
2424
#today_fmt = '%B %d, %Y'

main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ FILE *file_out_ptr = NULL;
4040
__near long __stack = 200000;
4141
#endif
4242

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

4646
char *tmp_name = NULL;
4747

@@ -126,7 +126,7 @@ int main(int argc, char *argv[]) {
126126
}
127127

128128
if (output_format == OUTPUT_NONE || parse_flags_result == FAILED) {
129-
printf("\nWLA " ARCH_STR " Macro Assembler v9.10a\n");
129+
printf("\nWLA " ARCH_STR " Macro Assembler v9.10\n");
130130
printf("Written by Ville Helin in 1998-2008 - In GitHub since 2014: https://github.com/vhelin/wla-dx\n");
131131
#ifdef WLA_DEBUG
132132
printf("*** WLA_DEBUG defined - this executable is running in DEBUG mode ***\n");

wlalink/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#define WLALINK_DEBUG
2626
*/
2727

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

3030
#ifdef AMIGA
3131
long __stack = 200000;

0 commit comments

Comments
 (0)