Skip to content

Commit 8bbdfeb

Browse files
committed
Update
1 parent 3d0ff30 commit 8bbdfeb

13 files changed

Lines changed: 176 additions & 175 deletions

File tree

CHANGES

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,5 @@ Release 18 (30/12/22):
9696

9797
CHG: Fixed EOF bug.
9898
CHG: Imported Jessie's suggestions/rewrites to the loader, much quicker :)
99-
CHG: SAVE now working.
99+
CHG: SAVE now working.
100+
CHG: Now imports TAB (chr(9)) correctly, was breaking comments.

bin/basic.rom

0 Bytes
Binary file not shown.

release/19/02.bin

0 Bytes
Binary file not shown.

release/19/basic_19.rom

0 Bytes
Binary file not shown.

release/19/basic_autoload_19.rom

0 Bytes
Binary file not shown.

source/build/02.bin

0 Bytes
Binary file not shown.

source/build/basic.rom

0 Bytes
Binary file not shown.

source/build/kernel.ram

0 Bytes
Binary file not shown.

source/build/ramkernel.bin

0 Bytes
Binary file not shown.

source/common/commands/load.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ LoadReadCharacter:
122122
_LRCIsEOF:
123123
lda #0
124124
_LRCExit:
125-
cmp #8 ; convert tab to space
125+
cmp #9 ; convert tab to space
126126
bne _LRCNotTab
127127
lda #' '
128128
_LRCNotTab:

0 commit comments

Comments
 (0)