mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-27 12:28:06 +11:00
pcat: adapt to word type change
This commit is contained in:
parent
3d2dc041fb
commit
eed817b517
3
blk/759
3
blk/759
@ -1,4 +1,3 @@
|
|||||||
: CODE ( same as CREATE, but with native word )
|
: CODE ( same as CREATE, but with native word )
|
||||||
(entry)
|
(entry) 0 ( native ) C, ;
|
||||||
23 C, ( 23 == nativeWord ) ;
|
|
||||||
: ;CODE JMPn, 0x1a ( next ) RPCn, ;
|
: ;CODE JMPn, 0x1a ( next ) RPCn, ;
|
||||||
|
14
blk/812
14
blk/812
@ -1,15 +1,15 @@
|
|||||||
H@ ORG !
|
H@ ORG !
|
||||||
JMPn, 0 A,, ( 00, main ) JMPn, 0 A,, ( 03, find )
|
JMPn, 0 A,, ( 00, main ) JMPn, 0 A,, ( 03, find )
|
||||||
0 A,, ( 06, unused ) 0 A,, ( 08, LATEST )
|
0 A,, ( 06, unused ) 0 A,, ( 08, LATEST )
|
||||||
0 A, ( 0a, unused ) JMPn, 0 A,, ( 0b, cellWord )
|
0 A, ( 0a, unused ) 0 A, 0 A,, ( 0b, unused )
|
||||||
JMPn, 0 A,, ( 0e compiledWord ) JMPn, 0 A,, ( 11, pushRS )
|
0 A, 0 A,, ( 0e, unused ) JMPn, 0 A,, ( 11, pushRS )
|
||||||
JMPn, 0 A,, ( 14, popRS )
|
JMPn, 0 A,, ( 14, popRS )
|
||||||
DI JMPr, ( 17, nativeWord ) 0 A,
|
0 A, 0 A,, ( 17, unused )
|
||||||
JMPn, 0 A,, ( 1a, next ) JMPn, 0 A,, ( 1d, unused )
|
JMPn, 0 A,, ( 1a, next ) 0 A, 0 A,, ( 1d, unused )
|
||||||
0 A, 0 A, ( 20, numberWord ) 0 A, 0 A, ( 22, litWord )
|
0 A, 0 A, ( 20, unused ) 0 A, 0 A, ( 22, unused )
|
||||||
0 A, 0 A, ( 24, addrWord ) 0 A, 0 A, ( 26, unused )
|
0 A, 0 A, ( 24, unused ) 0 A, 0 A, ( 26, unused )
|
||||||
0 A, 0 A,, ( unused )
|
0 A, 0 A,, ( unused )
|
||||||
JMPn, 0 A,, ( 2b, doesWord ) 0 A, 0 A, ( 2e, unused )
|
0 A, 0 A,, ( 2b, unused ) 0 A, 0 A, ( 2e, unused )
|
||||||
0 A, 0 A,, ( unused )
|
0 A, 0 A,, ( unused )
|
||||||
JMPn, 0 A,, ( 33, execute ) 0 A, 0 A, ( unused )
|
JMPn, 0 A,, ( 33, execute ) 0 A, 0 A, ( unused )
|
||||||
0 A, 0 A,, ( unused )
|
0 A, 0 A,, ( unused )
|
||||||
|
2
blk/813
2
blk/813
@ -3,7 +3,7 @@
|
|||||||
the "stable ABI" )
|
the "stable ABI" )
|
||||||
'E' A, 'X' A, 'I' A, 'T' A, 0 A,, ( prev ) 4 A, ( len )
|
'E' A, 'X' A, 'I' A, 'T' A, 0 A,, ( prev ) 4 A, ( len )
|
||||||
H@ XCURRENT ! ( set current tip of dict, 0x42 )
|
H@ XCURRENT ! ( set current tip of dict, 0x42 )
|
||||||
0x17 A, ( nativeWord )
|
0 A, ( native )
|
||||||
DX [BP] 0 MOVx[]+, BP DECx, BP DECx, ( popRS )
|
DX [BP] 0 MOVx[]+, BP DECx, BP DECx, ( popRS )
|
||||||
;CODE NOP,
|
;CODE NOP,
|
||||||
CODE (br) ( 0x53 ) L2 BSET ( used in br? )
|
CODE (br) ( 0x53 ) L2 BSET ( used in br? )
|
||||||
|
4
blk/814
4
blk/814
@ -1,5 +1,5 @@
|
|||||||
PC ORG @ 0x20 + ! ( numberWord )
|
ORG @ 0xb9 + HERE !
|
||||||
PC ORG @ 0x24 + ! ( addrWord ) ( see B287 for comments )
|
CODE (n) ( 0xbf, number literal )
|
||||||
DI DX MOVxx, DI [DI] MOVx[], DI PUSHx,
|
DI DX MOVxx, DI [DI] MOVx[], DI PUSHx,
|
||||||
DX INCx, DX INCx,
|
DX INCx, DX INCx,
|
||||||
;CODE
|
;CODE
|
||||||
|
8
blk/815
8
blk/815
@ -3,11 +3,11 @@ PC 0x1d - ORG @ 0x1b + ! ( next )
|
|||||||
DI [DI] MOVx[], ( wordref )
|
DI [DI] MOVx[], ( wordref )
|
||||||
( continue to execute )
|
( continue to execute )
|
||||||
L1 BSET PC 0x36 - ORG @ 0x34 + ! ( execute -- DI -> wordref )
|
L1 BSET PC 0x36 - ORG @ 0x34 + ! ( execute -- DI -> wordref )
|
||||||
AH AH XORrr, AL [DI] MOVr[],
|
AL [DI] MOVr[], DI INCx, ( PFA )
|
||||||
DI INCx, ( PFA )
|
AL AL ORrr, IFZ, DI JMPr, THEN, ( native )
|
||||||
AX JMPr,
|
( continue to compiled )
|
||||||
|
|
||||||
PC 0x11 - ORG @ 0x0f + ! ( compiledWord -- DI -> PFA )
|
PC 0x11 - ORG @ 0x0f + ! ( compiled -- DI -> PFA )
|
||||||
BP INCx, BP INCx, [BP] 0 DX MOV[]+x, ( pushRS )
|
BP INCx, BP INCx, [BP] 0 DX MOV[]+x, ( pushRS )
|
||||||
DX DI MOVxx, DX INCx, DX INCx, ( --> IP )
|
DX DI MOVxx, DX INCx, DX INCx, ( --> IP )
|
||||||
DI [DI] MOVx[],
|
DI [DI] MOVx[],
|
||||||
|
2
blk/818
2
blk/818
@ -2,7 +2,7 @@ CODE BYE BEGIN, JMPs, AGAIN, ;CODE
|
|||||||
CODE EMIT
|
CODE EMIT
|
||||||
AX POPx, AH 0x0e MOVri, ( print char ) 0x10 INT,
|
AX POPx, AH 0x0e MOVri, ( print char ) 0x10 INT,
|
||||||
;CODE CODE 0 AX AX XORxx, AX PUSHx, ;CODE
|
;CODE CODE 0 AX AX XORxx, AX PUSHx, ;CODE
|
||||||
: FOO 'X' EMIT ; : BAR 0 IF FOO THEN FOO BYE ;
|
: FOO 'F' EMIT ; : BAR 0 IF FOO THEN FOO BYE ;
|
||||||
L3 BSET 3 A, 'B' A, 'A' A, 'R' A,
|
L3 BSET 3 A, 'B' A, 'A' A, 'R' A,
|
||||||
PC 3 - ORG @ 1+ ! ( main )
|
PC 3 - ORG @ 1+ ! ( main )
|
||||||
SP PS_ADDR MOVxI,
|
SP PS_ADDR MOVxI,
|
||||||
|
Loading…
Reference in New Issue
Block a user