forth: add word "LITS"

This commit is contained in:
Virgil Dupras 2020-03-21 16:31:53 -04:00
parent 145fdd8e05
commit def4ebd7ea
2 changed files with 13 additions and 3 deletions

View File

@ -145,6 +145,7 @@ NOT f -- f Push the logical opposite of f
*** Strings ***
LIT< x -- Read following word and write to HERE as a string
literal.
LITS a -- Write word at addr a as a atring literal.
SCMP a1 a2 -- n Compare strings a1 and a2. See CMP
SLEN a -- n Push length of str at a.

View File

@ -988,16 +988,15 @@ LITN:
ld (HERE), hl
jp next
.db "LIT<"
.db "LITS"
.fill 3
.dw LITN
.db 1 ; IMMEDIATE
LITRD:
LITS:
.dw compiledWord
.dw NUMBER
.dw LIT
.dw WR
.dw WORD
.dw .scpy
.dw EXIT
@ -1010,6 +1009,16 @@ LITRD:
jp next
.db "LIT<"
.fill 3
.dw LITS
.db 1 ; IMMEDIATE
LITRD:
.dw compiledWord
.dw WORD
.dw LITS
.dw EXIT
.db "(find)"
.fill 1
.dw LITRD