Skip to content

Commit

Permalink
Release v10.6
Browse files Browse the repository at this point in the history
  • Loading branch information
vhelin committed Nov 19, 2023
1 parent 82b88aa commit 89a90a5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG
Expand Up @@ -3,7 +3,7 @@
1... WLA GB-Z80/Z80/Z80N/6502/65C02/65CE02/65816/68000/6800/6801/6809/8008/8080/HUC6280/SPC-700/SuperFX History
---------------------------------------------------------------------------------------------------------------

v10.6 (12-Nov-2023) [ALL] Conditions (e.g., "(A > 1 || B < 3)") can now be used
v10.6 (19-Nov-2023) [ALL] Conditions (e.g., "(A > 1 || B < 3)") can now be used
everywhere, outside .IFs.
[ALL] It's not any more possible to create labels and
definitions called "_b" and "_f" as they are reserved names.
Expand Down Expand Up @@ -1519,7 +1519,7 @@ v1.0 (10-Jul-2000) The first public release.
4... WLALINK History
------------------------------------------------------------------------------

v5.21 (12-Nov-2023) WLALINK writes now version 3 WLA symbol files.
v5.21 (19-Nov-2023) WLALINK writes now version 3 WLA symbol files.
Symbol files created with -S contain now [sections] and
[ramsections] and "wlasymbol true" under [information].
If -d is used we don't give a .SECTION discarded message
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.6' # The short X.Y version, can be used with |version|
release = '10.6b' # The full version, including alpha/beta/rc tags, |release|
release = '10.6' # The full version, including alpha/beta/rc tags, |release|
language = None
#today = ''
#today_fmt = '%B %d, %Y'
Expand Down
3 changes: 2 additions & 1 deletion historical/wlalink/smakefile
Expand Up @@ -8,12 +8,13 @@ LFLAGS = STRIPDEBUG NOICONS
CFILES = main.c memory.c parse.c files.c check.c analyze.c write.c compute.c discard.c listfile.c
HFILES = main.h memory.h parse.h files.h check.h analyze.h write.h compute.h discard.h listfile.h defines.h
OFILES = main.o memory.o parse.o files.o check.o analyze.o write.o compute.o discard.o listfile.o
ALLFILES = $(CFILES) $(HFILES) $(OFILES)


all: main


main: $(CFILES) smakefile SCOPTIONS
main: $(ALLFILES) smakefile SCOPTIONS
$(LINKER) $(LFLAGS) FROM LIB:c.o $(OFILES) /crc32.o /hashmap.o /printf.o TO wlalink $(LLIB)

clean:
Expand Down
4 changes: 2 additions & 2 deletions main.c
Expand Up @@ -34,7 +34,7 @@ FILE *g_file_out_ptr = NULL;
__near long __stack = 200000;
#endif

char s_version_string[] = "$VER: wla-" WLA_NAME " 10.6b (12.11.2023)";
char s_version_string[] = "$VER: wla-" WLA_NAME " 10.6 (19.11.2023)";
char s_wla_version[] = "10.6";

extern struct incbin_file_data *g_incbin_file_data_first, *g_ifd_tmp;
Expand Down Expand Up @@ -1070,7 +1070,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.6b";
char title[] = "WLA " ARCH_STR " Macro Assembler v10.6";
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.21b (12.11.2023)";
char g_version_string[] = "$VER: wlalink 5.21 (19.11.2023)";

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

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

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

0 comments on commit 89a90a5

Please sign in to comment.