summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-12-16 22:38:26 +0100
committer mooglyguy <therealmogminer@gmail.com>2018-12-16 22:38:26 +0100
commitb844b7281d7a78aac022e2100693be7a4eedf798 (patch)
tree09dbe548a182a91e16d59b3d546d550d022c9365
parentb0b843c089d47535e1d16f1d8e5318342d50f9d5 (diff)
Fixed regression with steeltal et al, nw
-rw-r--r--src/mame/drivers/harddriv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/harddriv.cpp b/src/mame/drivers/harddriv.cpp
index 4fc6487170a..ea2dd4ca874 100644
--- a/src/mame/drivers/harddriv.cpp
+++ b/src/mame/drivers/harddriv.cpp
@@ -1601,7 +1601,7 @@ void harddriv_state::ds3(machine_config &config)
/* basic machine hardware */
ADSP2101(config, m_adsp, XTAL(12'000'000));
m_adsp->set_addrmap(AS_PROGRAM, &harddriv_state::ds3_program_map);
- m_adsp->set_addrmap(AS_PROGRAM, &harddriv_state::ds3_data_map);
+ m_adsp->set_addrmap(AS_DATA, &harddriv_state::ds3_data_map);
config.m_minimum_quantum = attotime::from_hz(60000);