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
361B

  1. : icpy ( n -- copy n chars from cursor to IBUF )
  2. IBUF _zbuf EDPOS @ _cpos IBUF ( n a buf ) ROT MOVE ;
  3. : X ( n -- )
  4. DUP icpy EDPOS @ _cpos 2DUP + ( n a1 a1+n )
  5. SWAP _rbufsz MOVE ( n )
  6. ( get to next line - n )
  7. DUP EDPOS @ 0xffc0 AND 0x40 + -^ _cpos ( n a )
  8. SWAP 0 FILL
  9. EDPOS @ 64 / _pln ;
  10. : E FBUF _blen X ;
  11. : Y FBUF _blen icpy ;