diff options
author | 2019-03-06 17:41:43 -0500 | |
---|---|---|
committer | 2019-03-06 17:41:43 -0500 | |
commit | eea8a69fbc583cb032417e0a3491b1179afea2f1 (patch) | |
tree | 1a345fd8b07af733931a774fffbeebcf961eeed3 /src/emu/emumem_hep.cpp | |
parent | 31762d7e186d3187540d9cea3c9ff4c4edf26d74 (diff) | |
parent | 5abdcd81a4254d3e9bd9d0bd63c86e29a46e2f12 (diff) |
Merge pull request #4480 from ajrhacker/crushift
tms9900, tms9980a, tms9995: CRU addressing change
Diffstat (limited to 'src/emu/emumem_hep.cpp')
-rw-r--r-- | src/emu/emumem_hep.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emu/emumem_hep.cpp b/src/emu/emumem_hep.cpp index 97bdf759a38..f411dcb522c 100644 --- a/src/emu/emumem_hep.cpp +++ b/src/emu/emumem_hep.cpp @@ -50,6 +50,8 @@ template<int Width, int AddrShift, int Endian> void handler_entry_write_passthro np->detach(handlers); } +template class handler_entry_read_passthrough<0, 1, ENDIANNESS_LITTLE>; +template class handler_entry_read_passthrough<0, 1, ENDIANNESS_BIG>; template class handler_entry_read_passthrough<0, 0, ENDIANNESS_LITTLE>; template class handler_entry_read_passthrough<0, 0, ENDIANNESS_BIG>; template class handler_entry_read_passthrough<1, 3, ENDIANNESS_LITTLE>; @@ -73,6 +75,8 @@ template class handler_entry_read_passthrough<3, -2, ENDIANNESS_BIG>; template class handler_entry_read_passthrough<3, -3, ENDIANNESS_LITTLE>; template class handler_entry_read_passthrough<3, -3, ENDIANNESS_BIG>; +template class handler_entry_write_passthrough<0, 1, ENDIANNESS_LITTLE>; +template class handler_entry_write_passthrough<0, 1, ENDIANNESS_BIG>; template class handler_entry_write_passthrough<0, 0, ENDIANNESS_LITTLE>; template class handler_entry_write_passthrough<0, 0, ENDIANNESS_BIG>; template class handler_entry_write_passthrough<1, 3, ENDIANNESS_LITTLE>; |