diff options
author | 2020-11-23 23:11:07 -0500 | |
---|---|---|
committer | 2020-11-23 23:11:07 -0500 | |
commit | 50c640b47283b9695659c3fcce7f71886e29ced2 (patch) | |
tree | 7ec4612e8f10d3b053ade06353d60948d48bd311 /src/devices/cpu/vt61 | |
parent | 4bb94f0e934fa908c9a47755dcc3bfe6979b1d01 (diff) |
vt61_cpu: Awful but seemingly necessary hack
Diffstat (limited to 'src/devices/cpu/vt61')
-rw-r--r-- | src/devices/cpu/vt61/vt61.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/vt61/vt61.cpp b/src/devices/cpu/vt61/vt61.cpp index 96194302b0d..0e8700d5912 100644 --- a/src/devices/cpu/vt61/vt61.cpp +++ b/src/devices/cpu/vt61/vt61.cpp @@ -228,7 +228,7 @@ bool vt61_cpu_device::branch_mux(u8 cond) case 12: // KEY DOWN (TODO) - return true; + return (m_ac != 050); // HACK: this forces what should be the C key down, which is somehow necessary at power-up case 13: // PWR UP |