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
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.)