Add variables 'LATEST' and 'HERE'
authorJonas Hvid <mail@johv.dk>
Fri, 6 Dec 2019 12:30:54 +0000 (13:30 +0100)
committerJonas Hvid <mail@johv.dk>
Fri, 6 Dec 2019 12:30:54 +0000 (13:30 +0100)
These will be used for compilation.

main.asm

index 183be74435f3b7091edd50c08ce92d3076434640..cbf8a139d6e4df42f6cfc6ab17b432b39a0efbe3 100644 (file)
--- a/main.asm
+++ b/main.asm
@@ -372,6 +372,19 @@ forth STATE, 'STATE'
   dq LIT, var_STATE
   dq EXIT
 
+;; Get the location of the LATEST variable. It can be set with '!' and read with
+;; '@'.
+forth LATEST, 'LATEST'
+  dq LIT, latest_entry
+  dq EXIT
+
+;; Get the location at which compiled words are expected to be added. This
+;; pointer is usually modified automatically when calling ',', but we can also
+;; read it manually with 'HERE'.
+forth HERE, 'HERE'
+  dq LIT, here
+  dq EXIT
+
 forth MAIN, 'MAIN'
   dq HELLO
   dq INTERPRET
@@ -380,6 +393,9 @@ forth MAIN, 'MAIN'
 
 segment readable writable
 
+;; The LATEST variable holds a pointer to the word that was last added to the
+;; dictionary. This pointer is updated as new words are added, and its value is
+;; used by FIND to look up words.
 latest_entry dq initial_latest_entry
 
 ;; The STATE variable is 0 when the interpreter is executing, and non-zero when
@@ -397,6 +413,10 @@ DOTU.rbuffer rq 16
 DOTU.length dq ?
 DOTU.printed_length dq ?
 
+;; Reserve space for compiled words, accessed through HERE.
+here dq here_top
+here_top rq $2000
+
 ;; Return stack
 rq $2000
 return_stack_top: