Skip to content

Commit

Permalink
updated to r2625 from svn repo - release 1.56.2625
Browse files Browse the repository at this point in the history
  • Loading branch information
irmen committed Apr 28, 2021
1 parent dfc7482 commit 5aee021
Show file tree
Hide file tree
Showing 11 changed files with 232 additions and 108 deletions.
2 changes: 1 addition & 1 deletion 64tass.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH 64tass 1 "Mar 23 2020" "64tass 1.55" "64tass 1.55"
.TH 64tass 1 "Apr 25 2021" "64tass 1.56" "64tass 1.56"
.SH NAME
64tass \- A multi pass optimizing macro assembler for the 65xx series of processors
.SH SYNOPSIS
Expand Down
6 changes: 3 additions & 3 deletions 64tass.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
$Id: 64tass.h 2547 2021-03-19 23:40:46Z soci $
$Id: 64tass.h 2625 2021-04-25 21:09:11Z soci $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -23,10 +23,10 @@
#include "inttypes.h"
#include "wait_e.h"
#ifndef REVISION
#define REVISION "2200?"
#define REVISION "2625?"
#endif
#undef VERSION
#define VERSION "1.55." REVISION
#define VERSION "1.56." REVISION
#define MAX_PASS 20

#define ignore() while(pline[lpoint.pos]==0x20 || pline[lpoint.pos]==0x09) lpoint.pos++
Expand Down
20 changes: 10 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ OBJS = 64tass.o opcodes.o str.o avl.o my_getopt.o eval.o error.o section.o \
LDLIBS = -lm
LANG = C
SVNVERSION != svnversion
REVISION != echo $(SVNVERSION) | grep -q "^[1-9]" && echo $(SVNVERSION) || echo "2200?"
REVISION != echo $(SVNVERSION) | grep -q "^[1-9]" && echo $(SVNVERSION) || echo "2625?"
CFLAGS = -g -O2 -W -Wall -Wextra -Wwrite-strings -Wshadow -fstrict-aliasing -DREVISION="\"$(REVISION)\"" -Wstrict-aliasing=2 -Werror=missing-prototypes
LDFLAGS =
TARGET = 64tass
Expand Down Expand Up @@ -62,7 +62,7 @@ bitsobj.o: bitsobj.c bitsobj.h obj.h attributes.h inttypes.h oper_e.h \
boolobj.o: boolobj.c boolobj.h obj.h attributes.h inttypes.h stdbool.h \
eval.h oper_e.h error.h errors_e.h variables.h arguments.h floatobj.h \
values.h strobj.h bitsobj.h intobj.h typeobj.h errorobj.h noneobj.h \
functionobj.h str.h
functionobj.h
bytesobj.o: bytesobj.c bytesobj.h obj.h attributes.h inttypes.h math.h \
eval.h stdbool.h oper_e.h unicode.h encoding.h errors_e.h variables.h \
arguments.h error.h boolobj.h floatobj.h values.h codeobj.h intobj.h \
Expand Down Expand Up @@ -105,16 +105,16 @@ file.o: file.c file.h attributes.h stdbool.h inttypes.h str.h wchar.h \
floatobj.o: floatobj.c floatobj.h obj.h attributes.h inttypes.h values.h \
math.h error.h stdbool.h errors_e.h eval.h oper_e.h variables.h \
arguments.h boolobj.h codeobj.h strobj.h bytesobj.h intobj.h bitsobj.h \
operobj.h typeobj.h noneobj.h errorobj.h addressobj.h functionobj.h \
str.h
operobj.h typeobj.h noneobj.h errorobj.h addressobj.h functionobj.h
foldobj.o: foldobj.c foldobj.h obj.h attributes.h inttypes.h values.h \
eval.h stdbool.h oper_e.h error.h errors_e.h typeobj.h strobj.h \
errorobj.h boolobj.h
functionobj.o: functionobj.c functionobj.h obj.h attributes.h inttypes.h \
str.h math.h isnprintf.h eval.h stdbool.h oper_e.h variables.h error.h \
errors_e.h file.h arguments.h instruction.h 64tass.h wait_e.h section.h \
avl.h floatobj.h values.h strobj.h listobj.h intobj.h boolobj.h \
typeobj.h noneobj.h errorobj.h bytesobj.h dictobj.h addressobj.h
math.h isnprintf.h eval.h stdbool.h oper_e.h variables.h error.h \
errors_e.h file.h str.h arguments.h instruction.h 64tass.h wait_e.h \
section.h avl.h floatobj.h values.h strobj.h listobj.h intobj.h \
boolobj.h typeobj.h noneobj.h errorobj.h bytesobj.h dictobj.h \
addressobj.h
gapobj.o: gapobj.c gapobj.h obj.h attributes.h inttypes.h eval.h \
stdbool.h oper_e.h variables.h values.h strobj.h boolobj.h typeobj.h \
errorobj.h errors_e.h
Expand All @@ -127,7 +127,7 @@ intobj.o: intobj.c intobj.h obj.h attributes.h inttypes.h math.h \
unicode.h stdbool.h encoding.h errors_e.h error.h eval.h oper_e.h \
variables.h arguments.h boolobj.h floatobj.h values.h codeobj.h strobj.h \
bytesobj.h bitsobj.h typeobj.h noneobj.h errorobj.h addressobj.h \
functionobj.h str.h
functionobj.h
isnprintf.o: isnprintf.c isnprintf.h attributes.h inttypes.h unicode.h \
stdbool.h eval.h oper_e.h error.h errors_e.h str.h floatobj.h obj.h \
values.h strobj.h intobj.h typeobj.h noneobj.h errorobj.h addressobj.h
Expand Down Expand Up @@ -205,7 +205,7 @@ ternary.o: ternary.c ternary.h stdbool.h inttypes.h unicode.h \
attributes.h error.h errors_e.h
typeobj.o: typeobj.c typeobj.h obj.h attributes.h inttypes.h stdbool.h \
variables.h eval.h oper_e.h error.h errors_e.h strobj.h errorobj.h \
functionobj.h str.h
functionobj.h
unicodedata.o: unicodedata.c unicodedata.h attributes.h inttypes.h
unicode.o: unicode.c unicode.h attributes.h inttypes.h stdbool.h wchar.h \
wctype.h error.h errors_e.h unicodedata.h str.h console.h
Expand Down
20 changes: 10 additions & 10 deletions Makefile.amigaos
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ OBJS = 64tass.o opcodes.o str.o avl.o my_getopt.o eval.o error.o section.o \
LDLIBS = -lmsoft
LANG = C
SVNVERSION != svnversion
REVISION != echo $(SVNVERSION) | grep -q "^[1-9]" && echo $(SVNVERSION) || echo "2200?"
REVISION != echo $(SVNVERSION) | grep -q "^[1-9]" && echo $(SVNVERSION) || echo "2625?"
CFLAGS = -c99 -soft-float
LDFLAGS =
TARGET = 64tass
Expand Down Expand Up @@ -50,7 +50,7 @@ bitsobj.o: bitsobj.c bitsobj.h obj.h attributes.h inttypes.h oper_e.h \
boolobj.o: boolobj.c boolobj.h obj.h attributes.h inttypes.h stdbool.h \
eval.h oper_e.h error.h errors_e.h variables.h arguments.h floatobj.h \
values.h strobj.h bitsobj.h intobj.h typeobj.h errorobj.h noneobj.h \
functionobj.h str.h
functionobj.h
bytesobj.o: bytesobj.c bytesobj.h obj.h attributes.h inttypes.h math.h \
eval.h stdbool.h oper_e.h unicode.h encoding.h errors_e.h variables.h \
arguments.h error.h boolobj.h floatobj.h values.h codeobj.h intobj.h \
Expand Down Expand Up @@ -93,16 +93,16 @@ file.o: file.c file.h attributes.h stdbool.h inttypes.h str.h wchar.h \
floatobj.o: floatobj.c floatobj.h obj.h attributes.h inttypes.h values.h \
math.h error.h stdbool.h errors_e.h eval.h oper_e.h variables.h \
arguments.h boolobj.h codeobj.h strobj.h bytesobj.h intobj.h bitsobj.h \
operobj.h typeobj.h noneobj.h errorobj.h addressobj.h functionobj.h \
str.h
operobj.h typeobj.h noneobj.h errorobj.h addressobj.h functionobj.h
foldobj.o: foldobj.c foldobj.h obj.h attributes.h inttypes.h values.h \
eval.h stdbool.h oper_e.h error.h errors_e.h typeobj.h strobj.h \
errorobj.h boolobj.h
functionobj.o: functionobj.c functionobj.h obj.h attributes.h inttypes.h \
str.h math.h isnprintf.h eval.h stdbool.h oper_e.h variables.h error.h \
errors_e.h file.h arguments.h instruction.h 64tass.h wait_e.h section.h \
avl.h floatobj.h values.h strobj.h listobj.h intobj.h boolobj.h \
typeobj.h noneobj.h errorobj.h bytesobj.h dictobj.h addressobj.h
math.h isnprintf.h eval.h stdbool.h oper_e.h variables.h error.h \
errors_e.h file.h str.h arguments.h instruction.h 64tass.h wait_e.h \
section.h avl.h floatobj.h values.h strobj.h listobj.h intobj.h \
boolobj.h typeobj.h noneobj.h errorobj.h bytesobj.h dictobj.h \
addressobj.h
gapobj.o: gapobj.c gapobj.h obj.h attributes.h inttypes.h eval.h \
stdbool.h oper_e.h variables.h values.h strobj.h boolobj.h typeobj.h \
errorobj.h errors_e.h
Expand All @@ -115,7 +115,7 @@ intobj.o: intobj.c intobj.h obj.h attributes.h inttypes.h math.h \
unicode.h stdbool.h encoding.h errors_e.h error.h eval.h oper_e.h \
variables.h arguments.h boolobj.h floatobj.h values.h codeobj.h strobj.h \
bytesobj.h bitsobj.h typeobj.h noneobj.h errorobj.h addressobj.h \
functionobj.h str.h
functionobj.h
isnprintf.o: isnprintf.c isnprintf.h attributes.h inttypes.h unicode.h \
stdbool.h eval.h oper_e.h error.h errors_e.h str.h floatobj.h obj.h \
values.h strobj.h intobj.h typeobj.h noneobj.h errorobj.h addressobj.h
Expand Down Expand Up @@ -193,7 +193,7 @@ ternary.o: ternary.c ternary.h stdbool.h inttypes.h unicode.h \
attributes.h error.h errors_e.h
typeobj.o: typeobj.c typeobj.h obj.h attributes.h inttypes.h stdbool.h \
variables.h eval.h oper_e.h error.h errors_e.h strobj.h errorobj.h \
functionobj.h str.h
functionobj.h
unicodedata.o: unicodedata.c unicodedata.h attributes.h inttypes.h
unicode.o: unicode.c unicode.h attributes.h inttypes.h stdbool.h wchar.h \
wctype.h error.h errors_e.h unicodedata.h str.h console.h
Expand Down
20 changes: 10 additions & 10 deletions Makefile.amigaos4
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ OBJS = 64tass.o opcodes.o str.o avl.o my_getopt.o eval.o error.o section.o \
LDLIBS = -lm
LANG = C
SVNVERSION != svnversion
REVISION != echo $(SVNVERSION) | grep -q "^[1-9]" && echo $(SVNVERSION) || echo "2200?"
REVISION != echo $(SVNVERSION) | grep -q "^[1-9]" && echo $(SVNVERSION) || echo "2625?"
CFLAGS = -O2 -W -Wall -Wextra -DREVISION="\"$(REVISION)\""
LDFLAGS = -s
TARGET = 64tass
Expand Down Expand Up @@ -48,7 +48,7 @@ bitsobj.o: bitsobj.c bitsobj.h obj.h attributes.h inttypes.h oper_e.h \
boolobj.o: boolobj.c boolobj.h obj.h attributes.h inttypes.h stdbool.h \
eval.h oper_e.h error.h errors_e.h variables.h arguments.h floatobj.h \
values.h strobj.h bitsobj.h intobj.h typeobj.h errorobj.h noneobj.h \
functionobj.h str.h
functionobj.h
bytesobj.o: bytesobj.c bytesobj.h obj.h attributes.h inttypes.h math.h \
eval.h stdbool.h oper_e.h unicode.h encoding.h errors_e.h variables.h \
arguments.h error.h boolobj.h floatobj.h values.h codeobj.h intobj.h \
Expand Down Expand Up @@ -91,16 +91,16 @@ file.o: file.c file.h attributes.h stdbool.h inttypes.h str.h wchar.h \
floatobj.o: floatobj.c floatobj.h obj.h attributes.h inttypes.h values.h \
math.h error.h stdbool.h errors_e.h eval.h oper_e.h variables.h \
arguments.h boolobj.h codeobj.h strobj.h bytesobj.h intobj.h bitsobj.h \
operobj.h typeobj.h noneobj.h errorobj.h addressobj.h functionobj.h \
str.h
operobj.h typeobj.h noneobj.h errorobj.h addressobj.h functionobj.h
foldobj.o: foldobj.c foldobj.h obj.h attributes.h inttypes.h values.h \
eval.h stdbool.h oper_e.h error.h errors_e.h typeobj.h strobj.h \
errorobj.h boolobj.h
functionobj.o: functionobj.c functionobj.h obj.h attributes.h inttypes.h \
str.h math.h isnprintf.h eval.h stdbool.h oper_e.h variables.h error.h \
errors_e.h file.h arguments.h instruction.h 64tass.h wait_e.h section.h \
avl.h floatobj.h values.h strobj.h listobj.h intobj.h boolobj.h \
typeobj.h noneobj.h errorobj.h bytesobj.h dictobj.h addressobj.h
math.h isnprintf.h eval.h stdbool.h oper_e.h variables.h error.h \
errors_e.h file.h str.h arguments.h instruction.h 64tass.h wait_e.h \
section.h avl.h floatobj.h values.h strobj.h listobj.h intobj.h \
boolobj.h typeobj.h noneobj.h errorobj.h bytesobj.h dictobj.h \
addressobj.h
gapobj.o: gapobj.c gapobj.h obj.h attributes.h inttypes.h eval.h \
stdbool.h oper_e.h variables.h values.h strobj.h boolobj.h typeobj.h \
errorobj.h errors_e.h
Expand All @@ -113,7 +113,7 @@ intobj.o: intobj.c intobj.h obj.h attributes.h inttypes.h math.h \
unicode.h stdbool.h encoding.h errors_e.h error.h eval.h oper_e.h \
variables.h arguments.h boolobj.h floatobj.h values.h codeobj.h strobj.h \
bytesobj.h bitsobj.h typeobj.h noneobj.h errorobj.h addressobj.h \
functionobj.h str.h
functionobj.h
isnprintf.o: isnprintf.c isnprintf.h attributes.h inttypes.h unicode.h \
stdbool.h eval.h oper_e.h error.h errors_e.h str.h floatobj.h obj.h \
values.h strobj.h intobj.h typeobj.h noneobj.h errorobj.h addressobj.h
Expand Down Expand Up @@ -191,7 +191,7 @@ ternary.o: ternary.c ternary.h stdbool.h inttypes.h unicode.h \
attributes.h error.h errors_e.h
typeobj.o: typeobj.c typeobj.h obj.h attributes.h inttypes.h stdbool.h \
variables.h eval.h oper_e.h error.h errors_e.h strobj.h errorobj.h \
functionobj.h str.h
functionobj.h
unicodedata.o: unicodedata.c unicodedata.h attributes.h inttypes.h
unicode.o: unicode.c unicode.h attributes.h inttypes.h stdbool.h wchar.h \
wctype.h error.h errors_e.h unicodedata.h str.h console.h
Expand Down
20 changes: 10 additions & 10 deletions Makefile.win
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ OBJS = 64tass.o opcodes.o str.o avl.o my_getopt.o eval.o error.o section.o \
LDLIBS = -lm
LANG = C
SVNVERSION != svnversion
REVISION != echo $(SVNVERSION) | grep -q "^[1-9]" && echo $(SVNVERSION) || echo "2200?"
REVISION != echo $(SVNVERSION) | grep -q "^[1-9]" && echo $(SVNVERSION) || echo "2625?"
CFLAGS = -O2 -march=i586 -W -Wall -Wextra -DREVISION="\"$(REVISION)\""
LDFLAGS = -s
TARGET = 64tass.exe
Expand Down Expand Up @@ -48,7 +48,7 @@ bitsobj.o: bitsobj.c bitsobj.h obj.h attributes.h inttypes.h oper_e.h \
boolobj.o: boolobj.c boolobj.h obj.h attributes.h inttypes.h stdbool.h \
eval.h oper_e.h error.h errors_e.h variables.h arguments.h floatobj.h \
values.h strobj.h bitsobj.h intobj.h typeobj.h errorobj.h noneobj.h \
functionobj.h str.h
functionobj.h
bytesobj.o: bytesobj.c bytesobj.h obj.h attributes.h inttypes.h math.h \
eval.h stdbool.h oper_e.h unicode.h encoding.h errors_e.h variables.h \
arguments.h error.h boolobj.h floatobj.h values.h codeobj.h intobj.h \
Expand Down Expand Up @@ -91,16 +91,16 @@ file.o: file.c file.h attributes.h stdbool.h inttypes.h str.h wchar.h \
floatobj.o: floatobj.c floatobj.h obj.h attributes.h inttypes.h values.h \
math.h error.h stdbool.h errors_e.h eval.h oper_e.h variables.h \
arguments.h boolobj.h codeobj.h strobj.h bytesobj.h intobj.h bitsobj.h \
operobj.h typeobj.h noneobj.h errorobj.h addressobj.h functionobj.h \
str.h
operobj.h typeobj.h noneobj.h errorobj.h addressobj.h functionobj.h
foldobj.o: foldobj.c foldobj.h obj.h attributes.h inttypes.h values.h \
eval.h stdbool.h oper_e.h error.h errors_e.h typeobj.h strobj.h \
errorobj.h boolobj.h
functionobj.o: functionobj.c functionobj.h obj.h attributes.h inttypes.h \
str.h math.h isnprintf.h eval.h stdbool.h oper_e.h variables.h error.h \
errors_e.h file.h arguments.h instruction.h 64tass.h wait_e.h section.h \
avl.h floatobj.h values.h strobj.h listobj.h intobj.h boolobj.h \
typeobj.h noneobj.h errorobj.h bytesobj.h dictobj.h addressobj.h
math.h isnprintf.h eval.h stdbool.h oper_e.h variables.h error.h \
errors_e.h file.h str.h arguments.h instruction.h 64tass.h wait_e.h \
section.h avl.h floatobj.h values.h strobj.h listobj.h intobj.h \
boolobj.h typeobj.h noneobj.h errorobj.h bytesobj.h dictobj.h \
addressobj.h
gapobj.o: gapobj.c gapobj.h obj.h attributes.h inttypes.h eval.h \
stdbool.h oper_e.h variables.h values.h strobj.h boolobj.h typeobj.h \
errorobj.h errors_e.h
Expand All @@ -113,7 +113,7 @@ intobj.o: intobj.c intobj.h obj.h attributes.h inttypes.h math.h \
unicode.h stdbool.h encoding.h errors_e.h error.h eval.h oper_e.h \
variables.h arguments.h boolobj.h floatobj.h values.h codeobj.h strobj.h \
bytesobj.h bitsobj.h typeobj.h noneobj.h errorobj.h addressobj.h \
functionobj.h str.h
functionobj.h
isnprintf.o: isnprintf.c isnprintf.h attributes.h inttypes.h unicode.h \
stdbool.h eval.h oper_e.h error.h errors_e.h str.h floatobj.h obj.h \
values.h strobj.h intobj.h typeobj.h noneobj.h errorobj.h addressobj.h
Expand Down Expand Up @@ -191,7 +191,7 @@ ternary.o: ternary.c ternary.h stdbool.h inttypes.h unicode.h \
attributes.h error.h errors_e.h
typeobj.o: typeobj.c typeobj.h obj.h attributes.h inttypes.h stdbool.h \
variables.h eval.h oper_e.h error.h errors_e.h strobj.h errorobj.h \
functionobj.h str.h
functionobj.h
unicodedata.o: unicodedata.c unicodedata.h attributes.h inttypes.h
unicode.o: unicode.c unicode.h attributes.h inttypes.h stdbool.h wchar.h \
wctype.h error.h errors_e.h unicodedata.h str.h console.h
Expand Down
116 changes: 116 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,119 @@
r2625 (2021-04-25)
==================

The last release got more than a year old now and there were
plenty of pending corrections to be released. Some planned
features still didn't made it in. Maybe next time.

**Fixes**

* .fill/.align multi byte pattern fix
Broke due to changes in r1845.
* Wrong diagnostic for incomplete byte string
The missing closing quote was pointed at the wrong place
* Incomplete diagnostic message
The opcode was not displayed in some cases
* Diagnostic locations fixed
In some cases the location was wrong
* Duplicate diagnostic messages avoided
In some cases redundant diagnostics was output
* Crash while .function declaration and macro init parameters
Found by Pierre
* Improved filename portability checks
In some cases case insensitive filenames were not recognized
* Diagnostics of non-portable filename characters improved
Now points at the problematic character.
* Functions did not execute as loop and other conditions
Now they do.
* Can't calculate errors related to functions
In some cases these were incorrectly reported
* 4510 missed had () instead of (),z addressing mode
Now same as 65CE02 in this regard
* Improved format() diagnostics
It's more strict now
* Floating point bitops didn't work as intended
Actually in some cases they did work but mostly not
* Dot eor operator works again in TASM compatible mode
Got broken due to syntax clash with hexadecimal floats
* Wrong message text for invalid unary operators
Tried to diagnose them like binary by mistake
* Improved syntax highlighting
In some case it didn't highlight well on vim
* Byte string compare didn't work properly
In case a byte string was inverted.
* In some cases .null failed to detect zeros
For example for ~$ff

**Changes**

* Comment nesting
Directives are not recognized now in commented block
* Negative size an error now, size extension a warning
If an offset reduces a memory area beyond 0 it's a fault now
(instead of 0) and extension beyond the original size a warning.
Controllable through -Wsize-large.
* PC bank wrapping gone now
Seemed like a good idea but crossing banks with long data gave
unexpected results for many people.
* VICE label de-duplication is gone now
Was intended to avoid warnings on import but actually breaks
symbolic breakpoints if the needed label gets deduplicated...
* -Wswitch-case gone now
Could cause unexpected side effects which is a no-no for diagnostics
* Ident renamed to symbol
For less confusing diagnostic messages
* Long values not displayed in listing by default
They cluttered up the listing. They are still displayed in verbose
mode.
* Dictionary keys must be identical and not equal
Otherwise bit strings can't be matched properly for example.
* Hex float format from format() gone now
Seemed like it's easy to add without much effort but it was not cross
platform.
* Bit string extraction operators now return bit string
Did return bytes for a long while but now I realized those may not
compare as expected in some cases.
* Multi line expressions are gone now
Seemed like a good idea back then but they cause more problems than
they solve. They were never documented due to all the unsolved edge
cases anyway.
* Duplicated label files do not append automatically
It must be done now explicitly with --labels-append
* Unnamed values not listed in listing any more
There's no label so makes no sense

**New**

* Immediate operand to branches
It's now possible to write 'bne #0' (for self modifying code)
* Hexadecimal byte string literal separation with spaces
Space is accepted now in hexadecimal byte strings like x'ab cd'
* Various byte string functions added
Like byte(), word() and friends
* New --output-append parameter
For appending the output to a file instead of overwriting it
* New --no-output option
For cases where no output file is needed
* Symbol definition syntax
May be defined with a dot prefix. Useful as dictionary keys.
* New .sfunction directive
For defining single line functions which only do calculations
* Alternative end directives
Bit more verbose but more consistent and easier to remember.
E.g. .endpage vs. .endp
* Identity operator (===)
For exact matching
* --no-error and --error-append
To not save or append error messages
* Broadcasting conditional operator is '??'
Sometimes broadcasting is needed but that's not compatible with the
regular '?' conditional operator
* Diagnostics for interrupted compilation
Now it's displayed where it happened for improved infinite loop
debugging.
* --labels-append
For appending to label files.

r2200 (2020-04-07)
==================

Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
64tass v1.55 r2200 reference manual
64tass v1.56 r2625 reference manual

This is the manual for 64tass, the multi pass optimizing macro assembler for
the 65xx series of processors. Key features:
Expand Down
Loading

0 comments on commit 5aee021

Please sign in to comment.