2020-03-08 04:13:15 +11:00
|
|
|
; *** Const ***
|
|
|
|
; Base of the Return Stack
|
|
|
|
.equ RS_ADDR 0xf000
|
|
|
|
; Number of bytes we keep as a padding between HERE and the scratchpad
|
|
|
|
.equ PADDING 0x20
|
2020-03-08 09:09:45 +11:00
|
|
|
; Max length of dict entry names
|
2020-03-10 10:50:51 +11:00
|
|
|
.equ NAMELEN 7
|
2020-03-08 04:13:15 +11:00
|
|
|
; Offset of the code link relative to the beginning of the word
|
2020-03-10 10:50:51 +11:00
|
|
|
.equ CODELINK_OFFSET NAMELEN+3
|
2020-03-08 04:13:15 +11:00
|
|
|
|
2020-03-13 02:39:27 +11:00
|
|
|
; Flags for the "flag field" of the word structure
|
|
|
|
; IMMEDIATE word
|
|
|
|
.equ FLAG_IMMED 0
|
|
|
|
; This wordref is not a regular word (it's not preceeded by a name). It's one
|
|
|
|
; of the NUMBER, LIT, BRANCH etc. entities.
|
|
|
|
.equ FLAG_UNWORD 1
|
|
|
|
|
2020-03-08 04:13:15 +11:00
|
|
|
; *** Variables ***
|
|
|
|
.equ INITIAL_SP FORTH_RAMSTART
|
|
|
|
.equ CURRENT @+2
|
|
|
|
.equ HERE @+2
|
2020-03-13 04:52:27 +11:00
|
|
|
.equ OLDHERE @+2
|
2020-03-11 12:37:06 +11:00
|
|
|
; Pointer to where we currently are in the interpretation of the current line.
|
2020-03-08 04:13:15 +11:00
|
|
|
.equ INPUTPOS @+2
|
2020-03-08 09:09:45 +11:00
|
|
|
; Buffer where we compile the current input line. Same size as STDIO_BUFSIZE.
|
2020-03-09 23:49:51 +11:00
|
|
|
.equ COMPBUF @+2
|
2020-03-08 09:09:45 +11:00
|
|
|
.equ FORTH_RAMEND @+0x40
|
2020-03-08 04:13:15 +11:00
|
|
|
|
2020-03-12 15:14:44 +11:00
|
|
|
; (HERE) usually starts at RAMEND, but in certain situations, such as in stage0,
|
|
|
|
; (HERE) will begin at a strategic place.
|
|
|
|
.equ HERE_INITIAL FORTH_RAMEND
|
|
|
|
|
2020-03-11 12:37:06 +11:00
|
|
|
; EXECUTION MODEL
|
|
|
|
; After having read a line through stdioReadLine, we want to interpret it. As
|
|
|
|
; a general rule, we go like this:
|
|
|
|
;
|
|
|
|
; 1. read single word from line
|
|
|
|
; 2. compile word to atom
|
2020-03-13 04:08:11 +11:00
|
|
|
; 3. if immediate, execute atom
|
|
|
|
; 4. goto 1 until we exhaust words
|
|
|
|
; 5. Execute compiled atom list as if it was a regular compiledWord.
|
2020-03-11 12:37:06 +11:00
|
|
|
;
|
2020-03-13 04:08:11 +11:00
|
|
|
; Because the Parameter Stack uses SP, we can't just go around calling routines:
|
2020-03-11 12:37:06 +11:00
|
|
|
; This messes with the PS. This is why we almost always jump (unless our call
|
|
|
|
; doesn't involve Forth words in any way).
|
|
|
|
;
|
|
|
|
; This presents a challenge for our interpret loop because step 4, "goto 1"
|
|
|
|
; isn't obvious. To be able to do that, we must push a "return routine" to the
|
|
|
|
; Return Stack before step 3.
|
2020-03-13 04:08:11 +11:00
|
|
|
;
|
|
|
|
; HERE and IMMEDIATE: When compiling in step 2, we spit compiled atoms in
|
|
|
|
; (HERE) to simplify "," semantic in Forth (spitting, in all cases, is done in
|
|
|
|
; (HERE)). However, suring input line compilation, it isn't like during ":", we
|
|
|
|
; aren't creating a new entry.
|
|
|
|
;
|
|
|
|
; Compiling and executing from (HERE) would be dangerous because an
|
|
|
|
; entry-creation word, during runtime, could end up overwriting the atom list
|
|
|
|
; we're executing. This is why we have this list in COMPBUF.
|
|
|
|
;
|
|
|
|
; During IMMEDIATE mode, (HERE) is temporarily set to COMPBUF, and when we're
|
|
|
|
; done, we restore (HERE) for runtime. This way, everyone is happy.
|
2020-03-11 12:37:06 +11:00
|
|
|
|
2020-03-08 04:13:15 +11:00
|
|
|
; *** Code ***
|
|
|
|
forthMain:
|
2020-03-08 12:20:11 +11:00
|
|
|
; STACK OVERFLOW PROTECTION:
|
|
|
|
; To avoid having to check for stack underflow after each pop operation
|
|
|
|
; (which can end up being prohibitive in terms of costs), we give
|
|
|
|
; ourselves a nice 6 bytes buffer. 6 bytes because we seldom have words
|
|
|
|
; requiring more than 3 items from the stack. Then, at each "exit" call
|
|
|
|
; we check for stack underflow.
|
|
|
|
push af \ push af \ push af
|
2020-03-08 04:13:15 +11:00
|
|
|
ld (INITIAL_SP), sp
|
2020-03-12 15:14:44 +11:00
|
|
|
; LATEST is a *indirect* label to the latest entry of the dict. See
|
|
|
|
; default at the bottom of dict.asm. This indirection allows us to
|
|
|
|
; override latest to a value set in a binary dict compiled separately,
|
|
|
|
; for example by the stage0 bin.
|
2020-03-11 07:02:40 +11:00
|
|
|
ld hl, LATEST
|
2020-03-12 15:14:44 +11:00
|
|
|
call intoHL
|
2020-03-08 04:13:15 +11:00
|
|
|
ld (CURRENT), hl
|
2020-03-12 15:14:44 +11:00
|
|
|
ld hl, HERE_INITIAL
|
2020-03-08 04:13:15 +11:00
|
|
|
ld (HERE), hl
|
2020-03-08 09:09:45 +11:00
|
|
|
forthRdLine:
|
|
|
|
ld hl, msgOk
|
|
|
|
call printstr
|
|
|
|
call printcrlf
|
|
|
|
call stdioReadLine
|
2020-03-11 12:37:06 +11:00
|
|
|
ld ix, RS_ADDR-2 ; -2 because we inc-before-push
|
2020-03-08 09:09:45 +11:00
|
|
|
ld (INPUTPOS), hl
|
2020-03-13 04:08:11 +11:00
|
|
|
; We're about to compile the line and possibly execute IMMEDIATE words.
|
|
|
|
; Let's save current (HERE) and temporarily set it to COMPBUF.
|
|
|
|
ld hl, (HERE)
|
2020-03-13 04:52:27 +11:00
|
|
|
ld (OLDHERE), hl
|
2020-03-11 12:37:06 +11:00
|
|
|
ld hl, COMPBUF
|
2020-03-13 04:08:11 +11:00
|
|
|
ld (HERE), hl
|
2020-03-08 09:09:45 +11:00
|
|
|
forthInterpret:
|
2020-03-11 12:37:06 +11:00
|
|
|
call readword
|
|
|
|
jr nz, .execute
|
|
|
|
call find
|
|
|
|
jr nz, .maybeNum
|
|
|
|
ex de, hl
|
|
|
|
call HLisIMMED
|
|
|
|
jr z, .immed
|
|
|
|
ex de, hl
|
|
|
|
call .writeDE
|
|
|
|
jr forthInterpret
|
|
|
|
.maybeNum:
|
|
|
|
push hl ; --> lvl 1. save string addr
|
|
|
|
call parseLiteral
|
|
|
|
pop hl ; <-- lvl 1
|
|
|
|
jr nz, .undef
|
|
|
|
; a valid number in DE!
|
|
|
|
ex de, hl
|
|
|
|
ld de, NUMBER
|
|
|
|
call .writeDE
|
|
|
|
ex de, hl ; number in DE
|
|
|
|
call .writeDE
|
|
|
|
jr forthInterpret
|
|
|
|
.undef:
|
|
|
|
; When encountering an undefined word during compilation, we spit a
|
|
|
|
; reference to litWord, followed by the null-terminated word.
|
|
|
|
; This way, if a preceding word expect a string literal, it will read it
|
|
|
|
; by calling readLIT, and if it doesn't, the routine will be
|
|
|
|
; called, triggering an abort.
|
|
|
|
ld de, LIT
|
|
|
|
call .writeDE
|
2020-03-13 04:08:11 +11:00
|
|
|
ld de, (HERE)
|
2020-03-11 12:37:06 +11:00
|
|
|
call strcpyM
|
2020-03-13 04:08:11 +11:00
|
|
|
ld (HERE), de
|
2020-03-11 12:37:06 +11:00
|
|
|
jr forthInterpret
|
|
|
|
.immed:
|
|
|
|
push hl ; --> lvl 1
|
|
|
|
ld hl, .retRef
|
|
|
|
call pushRS
|
|
|
|
pop iy ; <-- lvl 1
|
2020-03-08 04:13:15 +11:00
|
|
|
jp executeCodeLink
|
2020-03-11 12:37:06 +11:00
|
|
|
.execute:
|
|
|
|
ld de, QUIT
|
|
|
|
call .writeDE
|
2020-03-13 04:08:11 +11:00
|
|
|
; Compilation done, let's restore (HERE) and execute!
|
2020-03-13 04:52:27 +11:00
|
|
|
ld hl, (OLDHERE)
|
2020-03-13 04:08:11 +11:00
|
|
|
ld (HERE), hl
|
2020-03-11 12:37:06 +11:00
|
|
|
ld iy, COMPBUF
|
|
|
|
jp compiledWord
|
|
|
|
.writeDE:
|
|
|
|
push hl
|
2020-03-13 04:08:11 +11:00
|
|
|
ld hl, (HERE)
|
2020-03-11 12:37:06 +11:00
|
|
|
ld (hl), e
|
|
|
|
inc hl
|
|
|
|
ld (hl), d
|
|
|
|
inc hl
|
2020-03-13 04:08:11 +11:00
|
|
|
ld (HERE), hl
|
2020-03-11 12:37:06 +11:00
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
|
|
|
|
.retRef:
|
|
|
|
.dw $+2
|
2020-03-12 08:53:27 +11:00
|
|
|
.dw $+2
|
|
|
|
call popRS
|
|
|
|
jr forthInterpret
|
2020-03-11 12:37:06 +11:00
|
|
|
|
2020-03-08 09:09:45 +11:00
|
|
|
msgOk:
|
|
|
|
.db " ok", 0
|