Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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