Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
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