Mirror of CollapseOS
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

123456789101112131415
  1. # fonts
  2. This folder contains bitmap fonts that are then converted to ASM data tables.
  3. The format for them is straightforward: dots and spaces. Each line is a line in
  4. the letter (for example, in a 6x8 font, each character is 8 lines of 6
  5. characters each, excluding newline).
  6. They cover the 0x21 to 0x7e range and are placed sequentially in the file.
  7. Dots and spaces allow easy visualisation of the result and is thus rather handy.
  8. Padding is excluded from fonts. For example, 5x7.txt is actually a 6x8 font, but
  9. because characters are always padded, it's useless to keep systematic blank
  10. lines or rows around.