This commit is contained in:
Michael Steil 2008-10-18 06:44:54 +00:00
parent a5f2c9ddcc
commit c60f652a6d
4 changed files with 11 additions and 5 deletions

View File

@ -1,4 +1,6 @@
; configuration ; configuration
CONFIG_10A := 1
CONFIG_DATAFLAG := 1 CONFIG_DATAFLAG := 1
CONFIG_NULL := 1 CONFIG_NULL := 1
CONFIG_PRINT_CR := 1 ; print CR when line end reached CONFIG_PRINT_CR := 1 ; print CR when line end reached

4
eval.s
View File

@ -499,6 +499,7 @@ L2DC2:
.endif .endif
.ifdef CONFIG_CBM1_PATCHES .ifdef CONFIG_CBM1_PATCHES
jmp PATCH3 jmp PATCH3
.byte $19
.endif .endif
.ifdef CBM2 .ifdef CBM2
bit $62 bit $62
@ -509,9 +510,6 @@ L2DC2:
.ifndef CONFIG_CBM_ALL .ifndef CONFIG_CBM_ALL
jmp LOAD_FAC_FROM_YA jmp LOAD_FAC_FROM_YA
.endif .endif
.ifdef CBM1
.byte $19
.endif
.ifdef CONFIG_CBM_ALL .ifdef CONFIG_CBM_ALL
LCE69: LCE69:
cpy #$49 cpy #$49

View File

@ -1331,11 +1331,11 @@ GETEXP:
lda EXPON lda EXPON
cmp #MAX_EXPON cmp #MAX_EXPON
bcc L3C2C bcc L3C2C
.ifndef CBM1 .ifdef CONFIG_10A
lda #$64 lda #$64
.endif .endif
bit EXPSGN bit EXPSGN
.ifndef CBM1 .ifdef CONFIG_10A
bmi L3C3A bmi L3C3A
.else .else
bmi LDC70 bmi LDC70

View File

@ -1,3 +1,9 @@
; error
; line input, line editing
; tokenize
; detokenize
; BASIC program memory management
; MICROTAN has some nonstandard extension to LIST here ; MICROTAN has some nonstandard extension to LIST here
.segment "CODE" .segment "CODE"