summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emumem_hep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/emumem_hep.cpp')
-rw-r--r--src/emu/emumem_hep.cpp4
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>;