Mirror of CollapseOS
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

17 satır
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