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.

12 lines
270B

  1. : _clrrows ( n u -- Clears u rows starting at n )
  2. SWAP _row!
  3. ( u ) 0 DO
  4. _yinc 0 _col!
  5. 11 0 DO 0 _data! LOOP
  6. _xinc 0 _data!
  7. LOOP ;
  8. : NEWLN ( ln -- )
  9. DUP 1+ FNTH 1+ * _zoff!
  10. FNTH 1+ * FNTH 1+ _clrrows ;
  11. : LCDCLR 0 64 _clrrows ;