X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?a=blobdiff_plain;f=src%2Fforth.jl;h=6afe492e4280322ff0c759209a640b3f063dc020;hb=30a093845e2d1097242e948bb577fb71f73bc860;hp=58f6940c661e053741cf13c9876b703e7a98a560;hpb=2ab8823537ce8773c38605931ab69b332953c738;p=forth.jl.git diff --git a/src/forth.jl b/src/forth.jl index 58f6940..6afe492 100644 --- a/src/forth.jl +++ b/src/forth.jl @@ -683,7 +683,7 @@ READ_LINE_CFA = defPrimWord("READ-LINE", () -> begin eofFlag = endswith(line, '\n') ? 0 : -1 line = chomp(line) - println("Reading: $line"); + #println("Reading: $line"); putString(line, addr, maxSize) @@ -969,29 +969,18 @@ FIB_CFA = defConst("FIB", FIB) NUMFIB, NUMFIB_CFA = defNewVar("#FIB", 0) IB_CFA = defPrimWord("IB", () -> begin - pushPS(mem[SOURCE_ID] == 0 ? TIB : FIB) + pushPS(mem[SOURCE_ID_VAR] == 0 ? TIB : FIB) return NEXT end) NUMIB_CFA = defPrimWord("#IB", () -> begin - pushPS(mem[SOURCE_ID] == 0 ? NUMTIB : NUMFIB) + pushPS(mem[SOURCE_ID_VAR] == 0 ? NUMTIB : NUMFIB) return NEXT end) TOIN, TOIN_CFA = defNewVar(">IN", 0) -SOURCE_ID, SOURCE_ID_CFA = defNewVar("SOURCE-ID", 0) - -SOURCE_CFA = defPrimWord("SOURCE", () -> begin - if mem[SOURCE_ID] == 0 - pushPS(TIB) - pushPS(NUMTIB) - else - pushPS(FIB) - pushPS(NUMFIB) - end - return NEXT -end) +SOURCE_ID_VAR, SOURCE_ID_VAR_CFA = defNewVar("SOURCE-ID-VAR", 0) QUERY_CFA = defWord("QUERY", [TIB_CFA, LIT_CFA, 160, EXPECT_CFA, @@ -999,10 +988,10 @@ QUERY_CFA = defWord("QUERY", LIT_CFA, 0, TOIN_CFA, STORE_CFA, EXIT_CFA]) -EOF_FLAG, EOF_FLAG_CFA = defNewVar("EOF-FLAG", 0) +EOF_FLAG, EOF_FLAG_CFA = defNewVar("EOF-FLAG", 0) # ( fid -- ) -# EOF-FLAG is set to true if EOF is reached +# EOF-FLAG set to true if EOF is reached QUERY_FILE_CFA = defWord("QUERY-FILE", [FIB_CFA, LIT_CFA, 160, ROT_CFA, READ_LINE_CFA, DROP_CFA, EOF_FLAG_CFA, STORE_CFA, @@ -1013,9 +1002,13 @@ QUERY_FILE_CFA = defWord("QUERY-FILE", WORD_CFA = defPrimWord("WORD", () -> begin delim = popPS() - callPrim(mem[SOURCE_CFA]) - sizeAddr = popPS() - bufferAddr = popPS() + if mem[SOURCE_ID_VAR] == 0 + bufferAddr = TIB + sizeAddr = NUMTIB + else + bufferAddr = FIB + sizeAddr = NUMFIB + end # Chew up initial occurrences of delim while (mem[TOIN] begin mem[countAddr] = count pushPS(countAddr) - println("Processing word: '$(getString(countAddr+1,mem[countAddr]))' (state $(mem[STATE]))") + #println("Processing word: '$(getString(countAddr+1,mem[countAddr]))' (state $(mem[STATE]))") return NEXT end) @@ -1230,7 +1223,7 @@ end) QUIT_CFA = defWord("QUIT", [LIT_CFA, 0, STATE_CFA, STORE_CFA, # Set mode to interpret - LIT_CFA, 0, SOURCE_ID_CFA, STORE_CFA, # Set terminal as input stream + LIT_CFA, 0, SOURCE_ID_VAR_CFA, STORE_CFA, # Set terminal as input stream LIT_CFA, 0, NUMTIB_CFA, STORE_CFA, # Clear the input buffer RSP0_CFA, RSPSTORE_CFA, # Clear the return stack QUERY_CFA, # Read line of input @@ -1240,14 +1233,17 @@ QUIT_CFA = defWord("QUIT", INCLUDED_CFA = defWord("INCLUDED", [LIT_CFA, 0, STATE_CFA, STORE_CFA, # Set mode to interpret FAM_RO_CFA, OPEN_FILE_CFA, DROP_CFA, # Open the file - SOURCE_ID_CFA, FETCH_CFA, SWAP_CFA, # Store current source on stack - SOURCE_ID_CFA, STORE_CFA, # Mark this as the current source - SOURCE_ID_CFA, FETCH_CFA, QUERY_FILE_CFA, # Read line from file + SOURCE_ID_VAR_CFA, FETCH_CFA, SWAP_CFA, # Store current source on stack + SOURCE_ID_VAR_CFA, STORE_CFA, # Mark this as the current source + SOURCE_ID_VAR_CFA, FETCH_CFA, QUERY_FILE_CFA, # Read line from file + EOF_FLAG_CFA, FETCH_CFA, + NUMFIB_CFA, FETCH_CFA, ZE_CFA, AND_CFA, # Test for EOF and empty line + INVERT_CFA, ZBRANCH_CFA, 4, # Break out if EOF INTERPRET_CFA, # Interpret line - EOF_FLAG_CFA, FETCH_CFA, ZBRANCH_CFA, -7, # Loop if not EOF - SOURCE_ID_CFA, FETCH_CFA, + BRANCH_CFA, -14, # Loop + SOURCE_ID_VAR_CFA, FETCH_CFA, CLOSE_FILE_CFA, DROP_CFA, # Close file - SOURCE_ID_CFA, STORE_CFA, # Restore input source + SOURCE_ID_VAR_CFA, STORE_CFA, # Restore input source EXIT_CFA]) INCLUDE_CFA = defWord("INCLUDE", [LIT_CFA, 32, WORD_CFA, @@ -1306,8 +1302,8 @@ function run(;initialize=true) jmp = mem[EXIT_CFA] while jmp != 0 try - print("Entering prim $(getPrimName(jmp)), PS: ") - printPS() + #print("Entering prim $(getPrimName(jmp)), PS: ") + #printPS() jmp = callPrim(jmp)