Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed dependency on force_range feature #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions float.s
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ FDIVT:
jsr ADD_EXPONENTS
inc FAC
beq JOV
ldx #-MANTISSA_BYTES
ldx #<-MANTISSA_BYTES
lda #$01
L39A1:
ldy ARG+1
Expand Down Expand Up @@ -1452,9 +1452,9 @@ L3C8C:
ldy #>CON_BILLION
jsr FMULT
.ifdef CONFIG_SMALL
lda #-6 ; exponent adjustment
lda #<-6 ; exponent adjustment
.else
lda #-9
lda #<-9
.endif
L3C95:
sta INDX
Expand Down
4 changes: 2 additions & 2 deletions inline.s
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ INLIN1:
L0C32:
lda #$00
sta INPUTBUFFER,x
ldx #<INPUTBUFFER-1
ldy #>INPUTBUFFER-1
ldx #<(INPUTBUFFER-1)
ldy #>(INPUTBUFFER-1)
rts
.endif

Expand Down
2 changes: 1 addition & 1 deletion memory.s
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ L2300:
dex
bpl L2300
jsr GARBAG
ldx #TEMP1-FAC+1
ldx #<(TEMP1-FAC+1)
L230B:
pla
sta FAC,x
Expand Down
1 change: 0 additions & 1 deletion msbasic.s
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.feature force_range
.debuginfo +

.setcpu "6502"
Expand Down
2 changes: 1 addition & 1 deletion program.s
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ L24EA:
.ifdef CONFIG_NO_INPUTBUFFER_ZP
dec TXTPTR+1
.endif
lda #<INPUTBUFFER-1
lda #<(INPUTBUFFER-1)
sta TXTPTR
rts

Expand Down