From: Tim Vaughan Date: Sat, 7 May 2016 02:05:41 +0000 (+1200) Subject: New interpreter working. X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=forth.jl.git;a=commitdiff_plain;h=4aaffe598cbf92821d47324d80ba8a8044572aaa New interpreter working. --- diff --git a/src/forth.jl b/src/forth.jl index 7c0fea8..1679115 100644 --- a/src/forth.jl +++ b/src/forth.jl @@ -805,13 +805,13 @@ INTERPRET = defWord("INTERPRET", NUMBER, BTICK, LIT, COMMA, BRANCH, -39, # Interpreting - DUP, FIND, ZBRANCH, 5, + DUP, FIND, QDUP, ZBRANCH, 7, # Found word. Execute! - TOCFA, EXECUTE, BRANCH, -47, + SWAP, DROP, TOCFA, EXECUTE, BRANCH, -50, # No word found, parse number and leave on stack - NUMBER, BRANCH, -50, + NUMBER, BRANCH, -53, EXIT] ) @@ -830,6 +830,7 @@ QUIT = defWord("QUIT", BRANCH,-4]) BYE = defPrimWord("BYE", () -> begin + println("Bye!") return 0 end) @@ -938,25 +939,25 @@ function run(;initialize=false) # Everyting else is simply a consequence of this loop! jmp = NEXT while jmp != 0 -# try - println("Entering prim $(getPrimName(jmp))") + try + #println("Entering prim $(getPrimName(jmp))") jmp = callPrim(jmp) -# catch ex -# showerror(STDOUT, ex) -# println() -# -# while !isempty(sources) && currentSource() != STDIN -# close(pop!(sources)) -# end -# -# mem[STATE] = 0 -# mem[NUMTIB] = 0 -# reg.PSP = mem[PSP0] -# reg.RSP = mem[RSP0] -# reg.IP = QUIT + 1 -# jmp = NEXT -# end + catch ex + showerror(STDOUT, ex) + println() + + while !isempty(sources) && currentSource() != STDIN + close(pop!(sources)) + end + + mem[STATE] = 0 + mem[NUMTIB] = 0 + reg.PSP = mem[PSP0] + reg.RSP = mem[RSP0] + reg.IP = QUIT + 1 + jmp = NEXT + end end end