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

  1. ( Each row in ~FNT is a row of the glyph and there is 7 of
  2. them. We insert a blank one at the end of those 7. )
  3. : _sfont ( a -- Send font to TMS )
  4. 7 0 DO C@+ _data LOOP DROP
  5. ( blank row ) 0 _data ;
  6. : CELL! ( tilenum pos )
  7. 0x7800 OR _ctl ( tilenum )
  8. 0x5e MOD _data ;
  9. : COLS 40 ; : LINES 24 ;
  10. : TMS$
  11. 0x8100 _ctl ( blank screen ) _blank
  12. 0x4000 _ctl 0x5e 0 DO ~FNT I 7 * + _sfont LOOP
  13. 0x820e _ctl ( name table 0x3800 )
  14. 0x8400 _ctl ( patter table 0x0000 )
  15. 0x87f0 _ctl ( colors 0 and 1 )
  16. 0x8000 _ctl 0x81d0 _ctl ( text mode, display on ) ;