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.

13 lines
368B

  1. : _type ( buf -- )
  2. C< DUP 0xd = IF 2DROP EXIT THEN OVER DUP _zbuf ( c a )
  3. BEGIN ( c a )
  4. C!+ C< SWAP
  5. OVER 0x0d = UNTIL ( c a ) C! ;
  6. ( user-facing lines are 1-based )
  7. : T 1- DUP 64 * EDPOS ! _pln ;
  8. : P IBUF _type IBUF EDPOS @ _cpos 64 MOVE BLK!! ;
  9. : _mvln+ ( ln -- move ln 1 line further )
  10. DUP 14 > IF DROP EXIT THEN
  11. _lpos DUP 64 + 64 MOVE
  12. ;