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.

17 lines
318B

  1. ( Line numbers for the user are 1-based, but in code, they're
  2. 0-based. )
  3. VARIABLE EDPOS
  4. : _bpos 64 * BLK( + ;
  5. : T 1- DUP EDPOS ! _bpos (print) CRLF ;
  6. : P
  7. EDPOS @ _bpos C<
  8. 64 0 DO ( bpos c )
  9. DUP 0xd = IF DROP 0 THEN
  10. 2DUP SWAP I + C!
  11. DUP IF DROP C< THEN
  12. LOOP
  13. 2DROP
  14. BLK!!
  15. ;