summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/dcs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/dcs.c')
-rw-r--r--src/mame/audio/dcs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/audio/dcs.c b/src/mame/audio/dcs.c
index eab70de726f..d136529702d 100644
--- a/src/mame/audio/dcs.c
+++ b/src/mame/audio/dcs.c
@@ -919,8 +919,8 @@ void dcs_init(void)
cpunum_set_info_fct(dcs.cpunum, CPUINFO_PTR_ADSP2100_TIMER_HANDLER, (genf *)timer_enable_callback);
/* configure boot and sound ROMs */
- dcs.bootrom = (UINT16 *)memory_region(Machine, RGNCLASS_SOUND, "dcs");
- dcs.bootrom_words = memory_region_length(Machine, RGNCLASS_SOUND, "dcs") / 2;
+ dcs.bootrom = (UINT16 *)memory_region(Machine, "dcs");
+ dcs.bootrom_words = memory_region_length(Machine, "dcs") / 2;
dcs.sounddata = dcs.bootrom;
dcs.sounddata_words = dcs.bootrom_words;
dcs.sounddata_banks = dcs.sounddata_words / 0x1000;
@@ -970,8 +970,8 @@ void dcs2_init(running_machine *machine, int dram_in_mb, offs_t polling_offset)
cpunum_set_info_fct(dcs.cpunum, CPUINFO_PTR_ADSP2100_TIMER_HANDLER, (genf *)timer_enable_callback);
/* always boot from the base of "dcs" */
- dcs.bootrom = (UINT16 *)memory_region(machine, RGNCLASS_SOUND, "dcs");
- dcs.bootrom_words = memory_region_length(machine, RGNCLASS_SOUND, "dcs") / 2;
+ dcs.bootrom = (UINT16 *)memory_region(machine, "dcs");
+ dcs.bootrom_words = memory_region_length(machine, "dcs") / 2;
/* supports both RAM and ROM variants */
if (dram_in_mb != 0)