1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-11-02 10:10:54 +11:00

Compare commits

..

No commits in common. "0b3a328e6547b3b56808497dc6276724fd6eced6" and "b8d8007a3f40add3dfdf72779d35a6bc71219159" have entirely different histories.

10 changed files with 23 additions and 30 deletions

18
blk/081
View File

@ -1,16 +1,16 @@
(cont.)
RAMSTART INITIAL_SP +55 (key) override
+02 CURRENT +57 readln's variables
+04 HERE +59 blk's variables
+06 C<? +5b z80a's variables
+08 C<* override +5d adev's variables
+0a PARSEPTR +5f FUTURE USES
+0c C<* +70 DRIVERS
+0e WORDBUF +80 RAMEND
RAMSTART INITIAL_SP +55 EMITPTR override
+02 CURRENT +57 readln's variables
+04 HERE +59 blk's variables
+06 C<? +5b z80a's variables
+08 C<* override +5d adev's variables
+0a PARSEPTR +5f FUTURE USES
+0c C<* +70 DRIVERS
+0e WORDBUF +80 RAMEND
+2e BOOT C< PTR
+4e INTJUMP
+51 CURRENTPTR
+53 (emit) override
+53 EMITPTR
(cont.)

View File

@ -1,4 +1,4 @@
: (key)
: KEY
( inc then fetch )
ACIAR> @ 1+ DUP ACIA) @ = IF
DROP ACIA( @

View File

@ -12,5 +12,6 @@
( setup interrupt )
0xc3 0x4e RAM+ C! ( c3==JP, 4e==INTJUMP )
['] ~ACIA 0x4f RAM+ !
['] (emit) 0x53 RAM+ ! ( 53==EMITPTR )
(im1) ;

View File

@ -1,10 +1,10 @@
: BOOT
0x02 RAM+ CURRENT* !
LIT< (parse) (find) DROP (parse*) !
CURRENT @ 0x2e RAM+ ! ( 2e == BOOT C< PTR )
CURRENT @ 0x2e RAM+ ! ( 2e == BOOT C< PTR)
0 0x08 RAM+ ! ( 08 == C<* override )
0 0x53 RAM+ ! ( 53 == (emit) override )
0 0x55 RAM+ ! ( 55 == (key) override )
LIT< (emit) (find) DROP 0x53 RAM+ ! ( 53 == EMITPTR )
0 0x55 RAM+ ! ( 55 == EMITPTR override )
( 0c == C<* )
LIT< (boot<) (find) DROP 0x0c RAM+ !
( boot< always has a char waiting. 06 == C<?* )

View File

@ -1,6 +1,6 @@
: EMIT
( 0x53==(emit) override )
83 RAM+ @ DUP IF EXECUTE ELSE DROP (emit) THEN ;
( 0x53==EMITPTR 0x55==override )
85 RAM+ @ DUP NOT IF DROP 83 RAM+ @ THEN EXECUTE ;
: (print)
BEGIN

View File

@ -7,9 +7,9 @@
SPC BS
;
: KEY
85 RAM+ @ ( (key) override )
DUP IF EXECUTE ELSE DROP (key) THEN ;
( cont.: read one char into input buffer and returns whether we

View File

@ -1,4 +1,4 @@
CODE (key)
CODE KEY
A 0x01 LDrn, ( @KEY )
0x28 RSTn,
L A LDrr, H 0 LDrn,

View File

@ -1,9 +0,0 @@
CODE @PUT ( c a -- f )
DE POPqq,
BC POPqq,
chkPS,
A 0x04 LDrn, ( @PUT )
0x28 RSTn,
PUSHZ,
;CODE

Binary file not shown.

View File

@ -16,7 +16,8 @@ H@ 256 /MOD 2 PC! 2 PC!
( Update LATEST )
PC ORG @ 8 + !
," CURRENT @ HERE ! "
," : (emit) 0 PC! ; : (key) 0 PC@ ; "
," : (emit) 0 PC! ; CURRENT @ 83 RAM+ ! "
," : KEY 0 PC@ ; "
422 470 XPACKR
," ' (key) 12 RAM+ ! "
," ' KEY 12 RAM+ ! "
H@ 256 /MOD 2 PC! 2 PC!