Mirror of CollapseOS
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

14 строки
573B

  1. Fonts
  2. Fonts are kept in "source" form in the following blocks and
  3. then compiled to binary bitmasks by the following code. In
  4. source form, fonts are a simple sequence of '.' and 'X'. '.'
  5. means empty, 'X' means filled. Glyphs are entered one after the
  6. other, starting at 0x21 and ending at 0x7e. To be space
  7. efficient in blocks, we align glyphs horizontally in the blocks
  8. to fit as many character as we can. For example, a 5x7 font
  9. would mean that we would have 12x2 glyphs per block.
  10. 521 Font compiler 530 3x5 font
  11. 532 5x7 font 536 7x7 font