Mirror of CollapseOS
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

17 wiersze
550B

  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