summaryrefslogtreecommitdiff
path: root/genesis.c
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2017-04-16 16:40:04 -0700
committerMichael Pavone <pavone@retrodev.com>2017-04-16 16:40:04 -0700
commit43467d91c65238f3ecb4e1e71fc3197f345c93e3 (patch)
treea6272b86dde757476753e5e2ed28c55c10c56d1f /genesis.c
parente477136515ecff6e4b8636ff98466787440d4a77 (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/genesis.c b/genesis.c
index b17110e..1773f40 100644
--- a/genesis.c
+++ b/genesis.c
@@ -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;
}