Skip to content

Commit

Permalink
fix: don't write 0 to SLOT 6
Browse files Browse the repository at this point in the history
Fixes: #5
  • Loading branch information
remy committed Feb 28, 2023
1 parent c5bcc66 commit 0acf320
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified http
Binary file not shown.
2 changes: 1 addition & 1 deletion src/bank.asm
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ init:
ret

erase:
ld bc, $4000 ; 16k
ld bc, $3fff ; 16k
ld hl, buffer
ld de, buffer + 1
ld (hl), 0
Expand Down
2 changes: 1 addition & 1 deletion src/version.inc.asm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
IFNDEF TESTING
DEFINE VERSION "1.0.1"
DEFINE VERSION "1.0.2"
ELSE
DEFINE VERSION "TEST"
ENDIF
Expand Down

0 comments on commit 0acf320

Please sign in to comment.