forth: Forth-ify "C,"

This commit is contained in:
Virgil Dupras 2020-03-27 19:12:46 -04:00
parent 29dcddb8cd
commit 26871be6f2
3 changed files with 8 additions and 17 deletions

Binary file not shown.

View File

@ -720,24 +720,10 @@ EMIT:
.dw EXIT
.fill 49
.db "C,"
.dw $-EMIT
.db 2
CWR:
.dw nativeWord
pop de
call chkPS
ld hl, (HERE)
ld (hl), e
inc hl
ld (HERE), hl
jp next
.fill 71
.db ","
.dw $-CWR
.dw $-EMIT
.db 1
WR:
.dw nativeWord

View File

@ -81,6 +81,11 @@
AGAIN
;
: C,
HERE @ _c C!
HERE @ 1 + HERE !
;
: (entry)
HERE @ ( h )
WORD ( h s )
@ -92,7 +97,7 @@
( write prev value )
HERE @ CURRENT @ _c - ,
( write size )
C,
_c C,
HERE @ CURRENT !
;