summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Miodrag Milanović <mmicko@gmail.com>2016-01-27 06:38:25 +0100
committer Miodrag Milanović <mmicko@gmail.com>2016-01-27 06:38:25 +0100
commitfa02dd2f6f5a73ade0b203f9d50e6734b6d1af5a (patch)
treeff729794b36e73780344cc23abb495473d0ed3c5
parentca43021c2c303f0dbf204be0633818d5f8d0b518 (diff)
parenta1ce2cc22bca91a27377d6d352c8da8d269e202c (diff)
Merge pull request #588 from ajrhacker/vindshield
viper.cpp: unused function issues (nw)
-rw-r--r--src/mame/drivers/viper.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/drivers/viper.cpp b/src/mame/drivers/viper.cpp
index a91ce82d468..c10c28e55d0 100644
--- a/src/mame/drivers/viper.cpp
+++ b/src/mame/drivers/viper.cpp
@@ -441,6 +441,7 @@ UINT32 viper_state::screen_update_viper(screen_device &screen, bitmap_rgb32 &bit
UINT32 m_mpc8240_regs[256/4];
+#ifdef UNUSED_FUNCTION
static inline UINT64 read64le_with_32le_device_handler(read32_delegate handler, address_space &space, offs_t offset, UINT64 mem_mask)
{
UINT64 result = 0;
@@ -459,6 +460,7 @@ static inline void write64le_with_32le_device_handler(write32_delegate handler,
if (ACCESSING_BITS_32_63)
handler(space, offset * 2 + 1, data >> 32, mem_mask >> 32);
}
+#endif
static inline UINT64 read64be_with_32le_device_handler(read32_delegate handler, address_space &space, offs_t offset, UINT64 mem_mask)
{