Browse Source

forth: add word "LITS"

pull/95/head
Virgil Dupras 4 years ago
parent
commit
def4ebd7ea
2 changed files with 13 additions and 3 deletions
  1. +1
    -0
      forth/dictionary.txt
  2. +12
    -3
      forth/forth.asm

+ 1
- 0
forth/dictionary.txt 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.



+ 12
- 3
forth/forth.asm 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


Loading…
Cancel
Save