Mirror of CollapseOS
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 4 ans
il y a 4 ans
12345678910111213141516
  1. VDP Driver
  2. Implement (emit) on the console. Characters start at the top
  3. left. Every (emit) call converts the ASCII char received to its
  4. internal font, then put that char on screen, advancing the
  5. cursor by one. When reaching the end of the line (33rd char),
  6. wrap to the next.
  7. In the future, there's going to be a scrolling mechanism when
  8. we reach the bottom of the screen, but for now, when the end of
  9. the screen is reached, we wrap up to the top.
  10. When reaching a new line, we clear that line and the next to
  11. help readability.
  12. Load range: 623-628