1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2024-06-01 03:41:34 +00:00

Update SHOW words and disk images

This commit is contained in:
Dave Schmenk 2024-01-26 21:21:45 -08:00
parent b93b4d7c75
commit ff7c35deb9
4 changed files with 5 additions and 3 deletions

View File

@ -63,7 +63,9 @@ While running code, `<CTRL-C>` will break out and return to the interpreter.
`SRC" ssss"`: Source file `ssss` as input. Can be nested
`ENDSRC`: End sourcing file as input if stack flag non-zero
`?ENDSRC`: End sourcing file as input if stack flag non-zero
`ENDSRC`: End sourcing file as input
### Words for compiler modes:
@ -73,7 +75,7 @@ While running code, `<CTRL-C>` will break out and return to the interpreter.
### Word for converting string to number:
`?NUM`: Convert string and length to number, returning number and valid flag
`NUM?`: Convert string and length to number, returning number and valid flag
## Debugging vs Performance

Binary file not shown.

Binary file not shown.

View File

@ -387,7 +387,7 @@ byte = componly_flag | showcr_flag
word = @d_do, 0, @_leave_
// UNLOOP
char d_unloop = "UNLOOP"
byte = componly_flag | showcr_flag
byte = componly_flag
word = @d_leave, 0, @_unloop_
// COMPILED LOOP ( not in vocabulary )
char d_doloop = "(DOLOOP)"