mirror of
https://github.com/mgcaret/of816.git
synced 2024-12-29 17:31:57 +00:00
save a few bytes
This commit is contained in:
parent
32ec1e9df4
commit
f4a4504b0e
@ -1315,7 +1315,6 @@ dword LITERAL,"LITERAL",F_IMMED
|
|||||||
bra COMMA::code ; compile actual number
|
bra COMMA::code ; compile actual number
|
||||||
.else
|
.else
|
||||||
lda STACKBASE+2,x
|
lda STACKBASE+2,x
|
||||||
ora #$0000
|
|
||||||
beq COMMA::code ; compile fast literal
|
beq COMMA::code ; compile fast literal
|
||||||
ldy #.loword(_LIT)
|
ldy #.loword(_LIT)
|
||||||
lda #.hiword(_LIT)
|
lda #.hiword(_LIT)
|
||||||
@ -1688,19 +1687,17 @@ dword DROP,"DROP"
|
|||||||
NEXT
|
NEXT
|
||||||
eword
|
eword
|
||||||
|
|
||||||
; H: ( n1 n2 -- )
|
; H: ( n1 n2 n3 -- )
|
||||||
dword TWODROP,"2DROP"
|
dword THREEDROP,"3DROP"
|
||||||
jsr _stackincr
|
jsr _stackincr
|
||||||
|
twodrop: jsr _stackincr
|
||||||
jsr _stackincr
|
jsr _stackincr
|
||||||
NEXT
|
NEXT
|
||||||
eword
|
eword
|
||||||
|
|
||||||
; H: ( n1 n2 n3 -- )
|
; H: ( n1 n2 -- )
|
||||||
dword THREEDROP,"3DROP"
|
dword TWODROP,"2DROP"
|
||||||
jsr _stackincr
|
bra THREEDROP::twodrop
|
||||||
jsr _stackincr
|
|
||||||
jsr _stackincr
|
|
||||||
NEXT
|
|
||||||
eword
|
eword
|
||||||
|
|
||||||
; H: ( n1 ... nx -- ) empty stack
|
; H: ( n1 ... nx -- ) empty stack
|
||||||
|
Loading…
Reference in New Issue
Block a user