diff options
author | 2012-09-11 16:29:26 +0000 | |
---|---|---|
committer | 2012-09-11 16:29:26 +0000 | |
commit | d1a2c2e7a36796de9619ec4d9f81ea755178412d (patch) | |
tree | e210e894a1cda37c5407eaa0ff5a1e89b97cbfe3 /src/mess/machine/mac.c | |
parent | 0aa418e85b7f7aad5088bc96c9da0c371b15b2f2 (diff) |
Add ambiguous execute() and memory() methods to the
device_execute/memory_interfaces respectively in order
to catch unnecessary usage of the corresponding device_t
methods. Removed all existing redundant usage.
[Aaron Giles]
Diffstat (limited to 'src/mess/machine/mac.c')
-rw-r--r-- | src/mess/machine/mac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/mac.c b/src/mess/machine/mac.c index 54bf66dafd8..f7d9b275b0e 100644 --- a/src/mess/machine/mac.c +++ b/src/mess/machine/mac.c @@ -1814,7 +1814,7 @@ void mac_state::machine_reset() if (m_model >= MODEL_MAC_POWERMAC_6100 && m_model <= MODEL_MAC_POWERMAC_8100) { - m_awacs->set_dma_base(m_maincpu->memory().space(AS_PROGRAM), 0x10000, 0x12000); + m_awacs->set_dma_base(m_maincpu->space(AS_PROGRAM), 0x10000, 0x12000); } // start 60.15 Hz timer for most systems |