This commit is contained in:
Michael Steil 2008-10-17 06:31:11 +00:00
parent a188e67858
commit f6beb3974d
5 changed files with 8 additions and 8 deletions

View File

@ -36,10 +36,10 @@ LE1C9:
PATCH6: PATCH6:
bne LE1D8 bne LE1D8
LE1CE: LE1CE:
inc $05 inc POSX
bne LE1D8 bne LE1D8
lda $E2 lda $E2
sta $05 sta POSX
bne LE1CE bne LE1CE
LE1D8: LE1D8:
rts rts

View File

@ -13,7 +13,7 @@ CONFIG_11 := 1
CONFIG_11A := 1 CONFIG_11A := 1
CONFIG_2 := 1 CONFIG_2 := 1
CONFIG_2A := 1 CONFIG_2A := 1
CBM2_KBD := 1 ; 2 weird instances CONFIG_NO_READ_Y_IS_ZERO_HACK := 1
CONFIG_PEEK_SAVE_LINNUM := 1 CONFIG_PEEK_SAVE_LINNUM := 1
CONFIG_DATAFLAG := 1 CONFIG_DATAFLAG := 1
CONFIG_EASTER_EGG := 1 CONFIG_EASTER_EGG := 1

View File

@ -1,6 +1,6 @@
CONFIG_SCRTCH_ORDER := 3 CONFIG_SCRTCH_ORDER := 3
CONFIG_SMALL := 1 CONFIG_SMALL := 1
CBM2_KBD := 1 ; 2 weird instances CONFIG_NO_READ_Y_IS_ZERO_HACK := 1
CONFIG_11 := 1 CONFIG_11 := 1
CONFIG_11A := 1 CONFIG_11A := 1
CONFIG_2 := 1 CONFIG_2 := 1

View File

@ -186,7 +186,7 @@ GETC:
READ: READ:
ldx DATPTR ldx DATPTR
ldy DATPTR+1 ldy DATPTR+1
.ifdef CBM2_KBD .ifdef CONFIG_NO_READ_Y_IS_ZERO_HACK
; AppleSoft II, too ; AppleSoft II, too
lda #$98 ; READ lda #$98 ; READ
.byte $2C .byte $2C

View File

@ -123,7 +123,7 @@ PRINTNULLS:
.ifdef CONFIG_FILE .ifdef CONFIG_FILE
; Although there is no statement for it, ; Although there is no statement for it,
; CBM1 had NULL support and ignores ; CBM1 had NULL support and ignores
; it when not targeting the screem, ; it when not targeting the screen,
; CBM2 dropped it completely. ; CBM2 dropped it completely.
lda Z03 lda Z03
bne L29DD bne L29DD
@ -292,7 +292,7 @@ OUTDO:
bit Z14 bit Z14
bmi L2A56 bmi L2A56
.endif .endif
.ifndef CBM2_KBD .if .def(CONFIG_PRINT_CR) || .def(CBM1)
pha pha
.endif .endif
.ifdef CBM1 .ifdef CBM1
@ -338,7 +338,7 @@ L2A4C:
inc POSX inc POSX
.endif .endif
L2A4E: L2A4E:
.ifndef CBM2_KBD .if .def(CONFIG_PRINT_CR) || .def(CBM1)
pla pla
.endif .endif
.ifdef CONFIG_MONCOUT_DESTROYS_Y .ifdef CONFIG_MONCOUT_DESTROYS_Y