[go: up one dir, main page]

File: NEWS

package info (click to toggle)
z80dasm 1.1.4-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 1,132 kB
  • ctags: 280
  • sloc: asm: 68,772; ansic: 2,200; sh: 1,297; makefile: 49
file content (78 lines) | stat: -rw-r--r-- 2,197 bytes parent folder | download
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
z80dasm 1.1.4
=============

	Added options for unlabeled blocks and blocks that have a label at the
	last byte (instead of at one after the last byte)

	When a block was inserted in the middle of another block, the linked
	list of blocks got corrupted, which could lead to wrong disassembly in
	some cases.

z80dasm 1.1.3
=============

	Target addresses of relative branches weren't properly wrapped
	around the boundaries of 16-bit address space, resulting in missing
	labels for such branches and stack corruption due to a buffer
	overflow on 64-bit architectures.

	Thanks to Eric Smith for reporting this bug and providing a patch.

z80dasm 1.1.2
=============

	Added missing files to the tar file.

z80dasm 1.1.1
=============

	Fixed bug in label creation: a label was created for every 0xdd 
	command.

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.