summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/nes_slot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nes/nes_slot.cpp')
-rw-r--r--src/devices/bus/nes/nes_slot.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/devices/bus/nes/nes_slot.cpp b/src/devices/bus/nes/nes_slot.cpp
index b8f99355faa..2676ad357a7 100644
--- a/src/devices/bus/nes/nes_slot.cpp
+++ b/src/devices/bus/nes/nes_slot.cpp
@@ -1015,17 +1015,3 @@ WRITE8_MEMBER(nes_cart_slot_device::write_ex)
m_cart->set_open_bus(((offset + 0x4020) & 0xff00) >> 8);
}
}
-
-
-//-------------------------------------------------
-// partial hash function to be used by
-// device_image_partialhash_func
-//-------------------------------------------------
-
-void nes_partialhash(util::hash_collection &dest, const unsigned char *data,
- unsigned long length, const char *functions)
-{
- if (length <= 16)
- return;
- dest.compute(&data[16], length - 16, functions);
-}