summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pacman.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pacman.cpp')
-rw-r--r--src/mame/drivers/pacman.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/pacman.cpp b/src/mame/drivers/pacman.cpp
index a47806a0201..e97a4136111 100644
--- a/src/mame/drivers/pacman.cpp
+++ b/src/mame/drivers/pacman.cpp
@@ -390,7 +390,7 @@ MACHINE_RESET_MEMBER(pacman_state,mschamp)
MACHINE_RESET_MEMBER(pacman_state,superabc)
{
- superabc_bank_w(m_maincpu->space(AS_PROGRAM), 0, 0);
+ superabc_bank_w(0);
}
MACHINE_RESET_MEMBER(pacman_state,maketrax)
@@ -844,7 +844,7 @@ READ8_MEMBER(pacman_state::rocktrv2_question_r)
The two PROMs on the main board at 7F and 4A are also replaced with PROMs from the kit
*/
-WRITE8_MEMBER(pacman_state::superabc_bank_w)
+void pacman_state::superabc_bank_w(uint8_t data)
{
// d4-d6: bank
int bank = data >> 4 & 7;