Move ASCII constants from str unit to print

This commit is contained in:
Virgil Dupras 2020-04-04 10:28:00 -04:00
parent ba384bfa0f
commit 435b4f452c
4 changed files with 7 additions and 7 deletions

View File

@ -80,7 +80,7 @@
(parseb) IF EXIT THEN
(parsed) IF EXIT THEN
( nothing works )
ABORT" unknown word! "
LIT< (wnf) (find) DROP EXECUTE
;
' (parse) (parse*) !

View File

@ -28,3 +28,8 @@
: (uflw) ABORT" stack underflow" ;
: (wnf) ABORT" word not found" ;
: BS 8 EMIT ;
: LF 10 EMIT ;
: CR 13 EMIT ;
: SPC 32 EMIT ;

View File

@ -1,4 +1,4 @@
( requires core, parse )
( requires core, parse, print )
( Managing variables in a core module is tricky. Sure, we
have (sysv), but here we need to allocate a big buffer, and

View File

@ -5,8 +5,3 @@
1 +
AGAIN
;
: BS 8 EMIT ;
: LF 10 EMIT ;
: CR 13 EMIT ;
: SPC 32 EMIT ;