diff options
author | 2020-09-11 16:35:39 +0100 | |
---|---|---|
committer | 2020-09-11 11:35:39 -0400 | |
commit | f808ebdcf243eee417b5e856dde84ced25874ca0 (patch) | |
tree | 41036273ce9ee955871396e08790db8bf60fa52d /src/devices/machine/generalplus_gpl16250soc.cpp | |
parent | c7076d7ee8125ed8b29b1fb0ca232e6621093204 (diff) |
new NOT WORKING machines (#7212)
----
Retro Handheld Console 152-in-1 [Sean Riddle, David Haywood]
new WORKING clones
----
WWE Wrestlemania Steel Cage Challenge (Plug & Play) (set 2) [Sean Riddle]
- set all GPL16250 games to 96Mhz as this seems to be accurate (will look for speedups where possible later) [David Haywood]
Diffstat (limited to 'src/devices/machine/generalplus_gpl16250soc.cpp')
-rw-r--r-- | src/devices/machine/generalplus_gpl16250soc.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/machine/generalplus_gpl16250soc.cpp b/src/devices/machine/generalplus_gpl16250soc.cpp index 60bd40ae33d..ac0c99f480e 100644 --- a/src/devices/machine/generalplus_gpl16250soc.cpp +++ b/src/devices/machine/generalplus_gpl16250soc.cpp @@ -188,6 +188,7 @@ void sunplus_gcm394_base_device::trigger_systemm_dma(int channel) if (mode & 0x2000) { write_space(dest, val & 0xFF); + dest += destdelta; write_space(dest, val >> 8); } else |