Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c60f652

Browse files
committed
cleanup
1 parent a5f2c9d commit c60f652

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

defines_osi.s

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
; configuration
2+
CONFIG_10A := 1
3+
24
CONFIG_DATAFLAG := 1
35
CONFIG_NULL := 1
46
CONFIG_PRINT_CR := 1 ; print CR when line end reached

eval.s

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -499,6 +499,7 @@ L2DC2:
499499
.endif
500500
.ifdef CONFIG_CBM1_PATCHES
501501
jmp PATCH3
502+
.byte $19
502503
.endif
503504
.ifdef CBM2
504505
bit $62
@@ -509,9 +510,6 @@ L2DC2:
509510
.ifndef CONFIG_CBM_ALL
510511
jmp LOAD_FAC_FROM_YA
511512
.endif
512-
.ifdef CBM1
513-
.byte $19
514-
.endif
515513
.ifdef CONFIG_CBM_ALL
516514
LCE69:
517515
cpy #$49

float.s

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1331,11 +1331,11 @@ GETEXP:
13311331
lda EXPON
13321332
cmp #MAX_EXPON
13331333
bcc L3C2C
1334-
.ifndef CBM1
1334+
.ifdef CONFIG_10A
13351335
lda #$64
13361336
.endif
13371337
bit EXPSGN
1338-
.ifndef CBM1
1338+
.ifdef CONFIG_10A
13391339
bmi L3C3A
13401340
.else
13411341
bmi LDC70

program.s

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
; error
2+
; line input, line editing
3+
; tokenize
4+
; detokenize
5+
; BASIC program memory management
6+
17
; MICROTAN has some nonstandard extension to LIST here
28

39
.segment "CODE"

0 commit comments

Comments
 (0)