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.

15 lines
409B

  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. : _clrln ( n ) FNTH 1+ _clrrows ;
  9. : LCDCLR 0 64 _clrrows ;
  10. ( Changes the current line and go back to leftmost column )
  11. : _lf
  12. LCD_CURY C@ FNTH 1+ + DUP 63 > IF DROP 0 THEN
  13. DUP _clrln DUP FNTH 1+ + _zoff!
  14. LCD_CURY C! 0 LCD_CURX C! ;