Skip to content

Commit

Permalink
Fixed bug where garbage character was left after INPUT
Browse files Browse the repository at this point in the history
  • Loading branch information
neilsf committed Jan 18, 2021
1 parent 24466d2 commit 4bf7aa7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.3.09
v2.3.10
10 changes: 6 additions & 4 deletions lib/strings.asm
Original file line number Diff line number Diff line change
Expand Up @@ -285,13 +285,15 @@ STR_INPUT SUBROUTINE
lda #$00
sta (R2),y
; turn off cursor
ldy $d3
lda ($d1),y
ora #%01111111
; turn off cursor
sei
ldy $d3 ; y pos of cursor
lda $ce ; character under cursor
and #%01111111
sta ($d1),y
lda #$ff
sta $cc
cli
rts
Expand Down
2 changes: 1 addition & 1 deletion source/app.d
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ string listfile="";
* Version
*/

string compiler_version = "v2.3.09";
string compiler_version = "v2.3.10";

/**
* Application entry point
Expand Down

0 comments on commit 4bf7aa7

Please sign in to comment.