Skip to content

Commit

Permalink
#126. Fixed bank (0x7FFD) decoding in sna loading
Browse files Browse the repository at this point in the history
  • Loading branch information
maziac committed Jul 6, 2024
1 parent e664c01 commit b75ab14
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog

# 3.3.4
- Fix for #126: Data misalignment for ZX128K SNA with Active BANK6 in zsim. Banks in SNA loading fixed.

# 3.3.3
- Added palette command "dezog.serialport.test" to test the serial connection.

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.3.3",
"version": "3.3.4",
"publisher": "maziac",
"description": "Visual Studio Code Debugger for the Z80 and ZX Spectrum.",
"author": {
Expand Down
Binary file added releases/dezog-3.3.4.vsix
Binary file not shown.
2 changes: 1 addition & 1 deletion src/remotes/dzrp/snafile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export class SnaFile {
Utility.assert(index == 49183);

// Correct 3rd bank
const pagedInBank = this.port7ffd & 0x03;
const pagedInBank = this.port7ffd & 0x07;
this.memBanks[2].bank = pagedInBank;

// Read up to 6 more memory banks (48k), bank 0, 1, 3, 4, 6, 7
Expand Down

0 comments on commit b75ab14

Please sign in to comment.