Skip to content

Commit

Permalink
fix: :q switched in basic
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotlinski committed Feb 26, 2020
1 parent bf20e83 commit 435852a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion forth_src/v.fs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ $400 + ( addr ) ;

: sol 0 curx ! ;

: rom-kernal $37 1 c! ;
\ ram + io + kernal rom
: rom-kernal $36 1 c! ;
\ ram + io + ram
: ram-kernal $35 1 c! ;

: reset-buffer
Expand Down
2 changes: 1 addition & 1 deletion interpreter.asm
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ quit_reset
lda #>TIB
sta TIB_PTR + 1

lda #$56 ; ram + i/o + kernal
lda #$36 ; ram + i/o + kernal
sta 1

; Yellow text.
Expand Down

0 comments on commit 435852a

Please sign in to comment.