Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
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! ;