mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 21:50:55 +11:00
14 lines
429 B
Plaintext
14 lines
429 B
Plaintext
CREATE CMD 2 C, '$' C, 0 C,
|
|
VARIABLE PREVPOS
|
|
: 0acc 0 ACC ! ;
|
|
: acc@ ACC @ 1 MAX 0acc ;
|
|
: num ACC @ SWAP _pdacc IF DROP ELSE ACC ! THEN ;
|
|
: nspcs ( n -- , spit n space ) 0 DO SPC LOOP ;
|
|
: aty 0 SWAP AT-XY ;
|
|
: clrscr LINES 0 DO i aty COLS nspcs LOOP ;
|
|
: status 0 aty ." BLK" SPC BLK> ? SPC ACC ?
|
|
SPC EDPOS @ 64 /MOD . ',' EMIT . 10 nspcs ;
|
|
: contents 3 aty BLK> @ LIST ;
|
|
: selblk BLK@ contents ;
|
|
: mode! ( c -- ) 63 0 AT-XY ;
|