mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 17:50:54 +11:00
2d9a07d215
This was becoming heavy to manage.
14 lines
367 B
Plaintext
14 lines
367 B
Plaintext
( Cursor position in buffer. EDPOS/64 is line number )
|
|
CREATE EDPOS 0 ,
|
|
CREATE IBUF 64 ALLOT0
|
|
CREATE FBUF 64 ALLOT0
|
|
: _cpos BLK( + ;
|
|
: _lpos 64 * _cpos ;
|
|
: _pln ( lineno -- )
|
|
DUP _lpos DUP 64 + SWAP DO ( lno )
|
|
I EDPOS @ _cpos = IF '^' EMIT THEN
|
|
I C@ DUP 0x20 < IF DROP 0x20 THEN
|
|
EMIT
|
|
LOOP ( lno ) 1+ . ;
|
|
: _zbuf 64 0 FILL ; ( buf -- )
|