summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/viper.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2012-09-17 08:22:16 +0000
committer Aaron Giles <aaron@aarongiles.com>2012-09-17 08:22:16 +0000
commit3cce7e019e095296b5ce2bb45d19b1209bed961d (patch)
tree4fa76260ac2dee5878fbba70d759ba6a1d4d76bf /src/mame/drivers/viper.c
parent22b4739aded17790b3f1bf31b9da8ff9e6a0860c (diff)
Memory handler normalization, part 2. Change legacy
read/write handlers to take an address_space & instead of an address_space *. Also update pretty much all other functions to take a reference where appropriate. [Aaron Giles]
Diffstat (limited to 'src/mame/drivers/viper.c')
-rw-r--r--src/mame/drivers/viper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/viper.c b/src/mame/drivers/viper.c
index ea29930b93f..0d2c5e3aa93 100644
--- a/src/mame/drivers/viper.c
+++ b/src/mame/drivers/viper.c
@@ -1132,11 +1132,11 @@ WRITE32_MEMBER(viper_state::epic_w)
/*
READ64_MEMBER(viper_state::epic_64be_r)
{
- return read64be_with_32le_handler(epic_r, &space, offset, mem_mask);
+ return read64be_with_32le_handler(epic_r, space, offset, mem_mask);
}
WRITE64_MEMBER(viper_state::epic_64be_w)
{
- write64be_with_32le_handler(epic_w, &space, offset, data, mem_mask);
+ write64be_with_32le_handler(epic_w, space, offset, data, mem_mask);
}
*/