Skip to content

Commit

Permalink
New release.
Browse files Browse the repository at this point in the history
  • Loading branch information
maziac committed Mar 18, 2023
1 parent 467f254 commit 52fa0f3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 17 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# 3.2.3
- Fix for #109: Extension host terminated unexpectedly 3 times within the last 5 minutes. aduh95/graphviz.js has been replaced with node-graphviz.
- Changed disassembly of e.g. 'LD DE,8000.1' to 'LD DE,$8000.1'

# 3.2.2
- Fix for #108: Reverse engineering: Call Graph and Flow Chart failing to render.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dezog",
"displayName": "DeZog",
"version": "3.2.3-rc2",
"version": "3.2.3",
"publisher": "maziac",
"description": "Visual Studio Code Debugger for the Z80 and ZX Spectrum.",
"author": {
Expand Down
Binary file added releases/dezog-3.2.3.vsix
Binary file not shown.
14 changes: 0 additions & 14 deletions src/disassembler/core/opcode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1544,19 +1544,6 @@ export class Opcode {
valueName = (val >= 0) ? '+' : '';
valueName += val.toString();
}

/* TODO: REMOVE
// E.g. "LD DE,nnnn"
else if (this.valueType == NumberType.NUMBER_BYTE) {
// byte
valueName = Format.getHexFormattedString(this.value, 2);
}
else {
// word
valueName = Format.getHexFormattedString(this.value, 4);
}
*/

else if (this.valueType == NumberType.NUMBER_BYTE) {
// byte
valueName = Format.getHexFormattedString(this.value, 2);
Expand All @@ -1569,7 +1556,6 @@ export class Opcode {
valueName = funcGetLabel(this.value);
}


// Normal disassembly
this.disassembledText = util.format(this.name, valueName);
}
Expand Down

0 comments on commit 52fa0f3

Please sign in to comment.