summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hp9k_3xx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hp9k_3xx.cpp')
-rw-r--r--src/mame/drivers/hp9k_3xx.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/hp9k_3xx.cpp b/src/mame/drivers/hp9k_3xx.cpp
index b2e2585f65e..29061c95c82 100644
--- a/src/mame/drivers/hp9k_3xx.cpp
+++ b/src/mame/drivers/hp9k_3xx.cpp
@@ -187,12 +187,12 @@ void hp9k3xx_state::hp9k360_map(address_map &map)
map(0xff000000, 0xffffffff).ram();
}
-// 9000/370 - 8 MB RAM standard
+// 9000/370 - with 48 MB RAM (max. configuration)
void hp9k3xx_state::hp9k370_map(address_map &map)
{
hp9k3xx_common(map);
// main memory
- map(0xff800000, 0xffffffff).ram();
+ map(0xfd000000, 0xffffffff).ram();
}
// 9000/380 - '040
@@ -285,7 +285,7 @@ void hp9k3xx_state::add_dio32_bus(machine_config &config)
void hp9k3xx_state::set_bus_error(uint32_t address, bool rw, uint16_t mem_mask)
{
- if (m_maincpu->m68851_buserror())
+ if (m_maincpu->m68851_buserror(address))
return;
if (m_bus_error)