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.

15 lines
315B

  1. #include "tms9918.h"
  2. #define VDP_CRAM_SIZE 0x20
  3. typedef struct {
  4. TMS9918 tms;
  5. uint8_t cram[VDP_CRAM_SIZE];
  6. } VDP;
  7. void vdp_init(VDP *vdp);
  8. void vdp_cmd_wr(VDP *vdp, uint8_t val);
  9. uint8_t vdp_data_rd(VDP *vdp);
  10. void vdp_data_wr(VDP *vdp, uint8_t val);
  11. uint8_t vdp_pixel(VDP *vdp, uint16_t x, uint16_t y);