mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 21:30:56 +11:00
b22ab8437b
Kinda proud of this one. Efficiently piggy-backing on the Block Editor, keeping things simple, and yet, building power into the editor.
14 lines
380 B
Plaintext
14 lines
380 B
Plaintext
: bufp ( buf -- )
|
|
DUP 64 + SWAP DO
|
|
i C@ DUP 0x20 < IF DROP 0x20 THEN EMIT
|
|
LOOP ;
|
|
: bufs
|
|
1 aty ." I: " IBUF bufp
|
|
2 aty ." F: " FBUF bufp ;
|
|
: c<over KEY DUP EMIT DUP 0x0a = IF DROP 0x0d THEN ;
|
|
: VE ['] c<over 0x08 ( C< override ) RAM+ !
|
|
clrscr 0acc 0 EDPOS ! 0 PREVPOS ! contents
|
|
BEGIN status bufs setpos KEY handle UNTIL
|
|
0 0x08 RAM+ ! 19 aty ;
|
|
|