Skip to content

Commit eb85033

Browse files
committed
Update changelog and readme
1 parent 1163231 commit eb85033

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
2025-03-07: (0.75)
22
2025-03-05: First official release (0.75)
33
2025-03-21: Bump to v0.80 - Add support for external labels, such as BIOS calls. Improved code detection methods.
4+
2025-06-13: Bump to v0.85 - Add the ability to define user-defined labels to the labels file.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,7 @@ This is used by adding `--labels LABELSFILE` to the command line.
202202

203203
A label file allows external calls, such as BIOS entry points, to be defined and used in disassembled code. I've included `amstrad-labels.txt` in this repository as an example and for convenience.
204204

205-
The disassembler tracks what labels have been used during disassembly and will only add the labels that were used to the final disassembly.
206-
205+
You can also add custom code labels in this file, such as those for RSX jump points.
207206

208207
This is defined as follows:
209208

z80-disassembler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class Pointer(NamedTuple):
9090
str_sizes = {}
9191
style = "asm"
9292
hexstyle = "0x"
93-
myversion = "0.80"
93+
myversion = "0.85"
9494

9595

9696
#--- Debugging functions ---

0 commit comments

Comments
 (0)