Skip to content

Commit

Permalink
Getting ready to release v10.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
vhelin committed Nov 24, 2022
1 parent ee4d95f commit efdaca2
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/65CE02/65816/6800/6801/6809/8008/8080/HUC6280/SPC-700/SuperFX History
----------------------------------------------------------------------------------------------------

v10.4 (18-Nov-2022) [ALL] If a value is .DEFINEd later in the same source file
v10.4 (24-Nov-2022) [ALL] If a value is .DEFINEd later in the same source file
than used in a pending calculation, WLA can now solve
the pending calculation before exporting it to WLALINK.
[ALL] Added .SEEDRANDOM (seeds random number generator
Expand Down Expand Up @@ -1465,7 +1465,7 @@ v1.0 (10-Jul-2000) The first public release.
------------------------------------------------------------------------------


v5.19 (01-Nov-2022) WLALINK turned doubles into ints too early in computing
v5.19 (24-Nov-2022) WLALINK turned doubles into ints too early in computing
pending calculations on some cases thus losing
precision.

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

char g_version_string[] = "$VER: wla-" WLA_NAME " 10.4a (18.11.2022)";
char g_version_string[] = "$VER: wla-" WLA_NAME " 10.4 (24.11.2022)";
char g_wla_version[] = "10.4";

extern struct incbin_file_data *g_incbin_file_data_first, *g_ifd_tmp;
Expand Down Expand Up @@ -178,7 +178,7 @@ int main(int argc, char *argv[]) {
}

if (g_output_format == OUTPUT_NONE || parse_flags_result == FAILED) {
char title[] = "WLA " ARCH_STR " Macro Assembler v10.4a";
char title[] = "WLA " ARCH_STR " Macro Assembler v10.4";
int length, left, right;

length = (int)strlen(title);
Expand Down
4 changes: 2 additions & 2 deletions wlalink/main.c
Expand Up @@ -32,7 +32,7 @@
#define WLALINK_DEBUG 1
*/

char g_version_string[] = "$VER: wlalink 5.19a (11.11.2022)";
char g_version_string[] = "$VER: wlalink 5.19 (24.11.2022)";

#ifdef AMIGA
__near long __stack = 200000;
Expand Down Expand Up @@ -352,7 +352,7 @@ int main(int argc, char *argv[]) {
i = FAILED;

if (i == FAILED) {
char title[] = "WLALINK - WLA DX Macro Assembler Linker v5.19a";
char title[] = "WLALINK - WLA DX Macro Assembler Linker v5.19";
int length, left, right;

length = (int)strlen(title);
Expand Down

0 comments on commit efdaca2

Please sign in to comment.