summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/harddriv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/harddriv.c')
-rw-r--r--src/mame/machine/harddriv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/harddriv.c b/src/mame/machine/harddriv.c
index 65d33921739..8c67211ae77 100644
--- a/src/mame/machine/harddriv.c
+++ b/src/mame/machine/harddriv.c
@@ -167,9 +167,9 @@ static TIMER_CALLBACK( duart_callback );
MACHINE_START( harddriv )
{
/* predetermine memory regions */
- sim_memory = (UINT16 *)memory_region(machine, RGNCLASS_USER, "user1");
+ sim_memory = (UINT16 *)memory_region(machine, "user1");
som_memory = (UINT16 *)auto_malloc(0x8000);
- sim_memory_size = memory_region_length(machine, RGNCLASS_USER, "user1") / 2;
+ sim_memory_size = memory_region_length(machine, "user1") / 2;
adsp_pgm_memory_word = (UINT16 *)((UINT8 *)hdadsp_pgm_memory + 1);
}