Mirror of CollapseOS
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

17 linhas
523B

  1. TI-84+ LCD driver
  2. Implement (emit) on TI-84+ (for now)'s LCD screen.
  3. Load range: 555-560
  4. The screen is 96x64 pixels. The 64 rows are addressed directly
  5. with CMD_ROW but columns are addressed in chunks of 6 or 8 bits
  6. (there are two modes).
  7. In 6-bit mode, there are 16 visible columns. In 8-bit mode,
  8. there are 12.
  9. Note that "X-increment" and "Y-increment" work in the opposite
  10. way than what most people expect. Y moves left and right, X
  11. moves up and down.
  12. (cont.)