diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-04-16 16:40:04 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-04-16 16:40:04 -0700 |
commit | 43467d91c65238f3ecb4e1e71fc3197f345c93e3 (patch) | |
tree | a6272b86dde757476753e5e2ed28c55c10c56d1f /genesis.c | |
parent | e477136515ecff6e4b8636ff98466787440d4a77 (diff) |
Initial work on handling the 128KB VRAM mode bit and some basic prep work for VDP test register support
Diffstat (limited to 'genesis.c')
-rw-r--r-- | genesis.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -340,7 +340,7 @@ static m68k_context * vdp_port_write(uint32_t vdp_port, m68k_context * context, } else if (vdp_port < 0x18) { psg_write(gen->psg, value); } else { - //TODO: Implement undocumented test register(s) + vdp_test_port_write(gen->vdp, value); } return context; } |