mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-23 19:48:06 +11:00
forth: Forth-ify "C<"
This commit is contained in:
parent
f6cba4b1cf
commit
395eb04fac
Binary file not shown.
@ -126,6 +126,7 @@ LIT:
|
||||
; 35
|
||||
jp strcmp
|
||||
.dw RS_ADDR
|
||||
.dw CINPTR
|
||||
|
||||
; *** Code ***
|
||||
forthMain:
|
||||
@ -149,16 +150,6 @@ forthMain:
|
||||
ld hl, .parseName
|
||||
call find
|
||||
ld (PARSEPTR), de
|
||||
; Set up CINPTR
|
||||
; do we have a (c<) impl?
|
||||
ld hl, .cinName
|
||||
call find
|
||||
jr z, .skip
|
||||
; no? then use KEY
|
||||
ld hl, .keyName
|
||||
call find
|
||||
.skip:
|
||||
ld (CINPTR), de
|
||||
; Set up SYSVNXT
|
||||
ld hl, SYSVBUF
|
||||
ld (SYSVNXT), hl
|
||||
@ -169,14 +160,10 @@ forthMain:
|
||||
|
||||
.parseName:
|
||||
.db "(parse)", 0
|
||||
.cinName:
|
||||
.db "(c<)", 0
|
||||
.keyName:
|
||||
.db "KEY", 0
|
||||
.bootName:
|
||||
.db "BOOT", 0
|
||||
|
||||
.fill 68
|
||||
.fill 93
|
||||
|
||||
; STABLE ABI
|
||||
; Offset: 00cd
|
||||
@ -764,24 +751,10 @@ FIND_:
|
||||
push de
|
||||
jp next
|
||||
|
||||
; This is an indirect word that can be redirected through "CINPTR"
|
||||
; code: it is replaced in readln.fs.
|
||||
.db "C<"
|
||||
.dw $-FIND_
|
||||
.db 2
|
||||
CIN:
|
||||
.dw compiledWord
|
||||
.dw NUMBER
|
||||
.dw CINPTR
|
||||
.dw FETCH
|
||||
.dw EXECUTE
|
||||
.dw EXIT
|
||||
|
||||
|
||||
.fill 24
|
||||
.fill 41
|
||||
|
||||
.db "NOT"
|
||||
.dw $-CIN
|
||||
.dw $-FIND_
|
||||
.db 3
|
||||
NOT:
|
||||
.dw nativeWord
|
||||
|
@ -75,6 +75,11 @@
|
||||
LIT< stack-underflow _c (print) _c ABORT
|
||||
;
|
||||
|
||||
: C<
|
||||
( JTBL+40 == CINPTR )
|
||||
[ JTBL 40 + @ LITN ] @ EXECUTE
|
||||
;
|
||||
|
||||
: C,
|
||||
HERE @ _c C!
|
||||
HERE @ 1 _c + HERE !
|
||||
@ -87,7 +92,7 @@
|
||||
|
||||
: TOWORD
|
||||
BEGIN
|
||||
C< _c DUP _c WS? NOT IF EXIT THEN DROP
|
||||
_c C< _c DUP _c WS? NOT IF EXIT THEN DROP
|
||||
AGAIN
|
||||
;
|
||||
|
||||
@ -102,7 +107,7 @@
|
||||
always zero to pre-write our null-termination )
|
||||
_c OVER ! ( a )
|
||||
1 _c + ( a+1 )
|
||||
C< ( a c )
|
||||
_c C< ( a c )
|
||||
_c DUP _c WS?
|
||||
UNTIL
|
||||
( a this point, PS is: a WS )
|
||||
@ -147,6 +152,9 @@
|
||||
;
|
||||
|
||||
: BOOT
|
||||
LIT< (c<) (find) NOT IF LIT< KEY (find) DROP THEN
|
||||
( JTBL+40 == CINPTR )
|
||||
[ JTBL 40 + @ LITN ] !
|
||||
LIT< (c<$) (find) IF EXECUTE ELSE DROP THEN
|
||||
_c INTERPRET
|
||||
;
|
||||
|
Loading…
Reference in New Issue
Block a user