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

  1. : _zero ( x -- send 0 _data x times )
  2. ( x ) 0 DO 0 _data LOOP ;
  3. ( Each row in ~FNT is a row of the glyph and there is 7 of
  4. them. We insert a blank one at the end of those 7. For each
  5. row we set, we need to send 3 zero-bytes because each pixel in
  6. the tile is actually 4 bits because it can select among 16
  7. palettes. We use only 2 of them, which is why those bytes
  8. always stay zero. )
  9. : _sfont ( a -- Send font to VDP )
  10. 7 0 DO C@+ _data 3 _zero LOOP DROP
  11. ( blank row ) 4 _zero ;
  12. : CELL! ( tilenum pos )
  13. 2 * 0x7800 OR _ctl ( tilenum )
  14. 0x5e MOD _data 1 _zero ;