1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
z80dasm 1.1.0
=============
Rewritten symbol table routines. Support for input symbol files
('-S' option). Removed unnecessary and badly documented '-r'
option. Better comments in the output symbol file regarding where
in the assembly source a particular symbol is used.
Support for spliting binary file into data and code blocks.
Automatic labels that are first seen in a "call" instruction are
named "sub_XXXXh" instead of "lXXXXh".
z80dasm 1.0.1
=============
Various Debian package related changes.
Unprintable characters are replaced by ASCII dot when using '-t'
option (similar to hexdump).
Some minor bug fixes.
Summary of changes from dz80 3.0 to z80dasm 1.0.0
=================================================
dz80dat.c:
Fixed table entry for "2c" opcode (inc l).
dz80.c:
Added undocumented instruction "sli" ("cb 30") to the opcode decoding
logic.
Replaced command-line handling code with calls to code in cmdline.c.
Made Zilog-assembler compatiblity mode run-time configurable.
Fixed incorrect handling of sign bit for offsets for relative jumps
("jr" and "djnz" instructions)
Fixed handling of unknown or partial opcodes (these are now included
in the output with "defb" assembler directives)
New function for error reporting in cmdline.c
Disassembler output from pass 1 and 2 redirected from standard output
to temporary files.
|