Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 line
429B

  1. CREATE CMD 2 C, '$' C, 0 C,
  2. VARIABLE PREVPOS
  3. : 0acc 0 ACC ! ;
  4. : acc@ ACC @ 1 MAX 0acc ;
  5. : num ACC @ SWAP _pdacc IF DROP ELSE ACC ! THEN ;
  6. : nspcs ( n -- , spit n space ) 0 DO SPC LOOP ;
  7. : aty 0 SWAP AT-XY ;
  8. : clrscr LINES 0 DO i aty COLS nspcs LOOP ;
  9. : status 0 aty ." BLK" SPC BLK> ? SPC ACC ?
  10. SPC EDPOS @ 64 /MOD . ',' EMIT . 10 nspcs ;
  11. : contents 3 aty BLK> @ LIST ;
  12. : selblk BLK@ contents ;
  13. : mode! ( c -- ) 63 0 AT-XY ;