From dda99dfc48dad522c1a556907136db9eab403120 Mon Sep 17 00:00:00 2001 From: Fabio Priuli Date: Thu, 17 Sep 2009 22:54:05 +0000 Subject: [PATCH] renamed "user6" region to the more self explanatory "addons" --- src/mame/drivers/nss.c | 2 +- src/mame/machine/snesdsp1.c | 2 +- src/mame/machine/snesdsp3.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/drivers/nss.c b/src/mame/drivers/nss.c index 843da827d2c..8ee74790c05 100644 --- a/src/mame/drivers/nss.c +++ b/src/mame/drivers/nss.c @@ -447,7 +447,7 @@ MACHINE_DRIVER_END #define NSS_BIOS \ ROM_REGION(0x100, "user5", 0) /* IPL ROM */ \ ROM_LOAD("spc700.rom", 0, 0x40, CRC(44bb3a40) SHA1(97e352553e94242ae823547cd853eecda55c20f0) ) \ - ROM_REGION(0x1000, "user6", 0) /* add-on chip ROMs (DSP1 could be needed if we dump smk). the second 0x800 host DSP3 ROM in MESS */\ + ROM_REGION(0x1000, "addons", 0) /* add-on chip ROMs (DSP1 could be needed if we dump smk). the second 0x800 host DSP3 ROM in MESS */\ ROM_LOAD("dsp1data.bin", 0x000000, 0x000800, CRC(4b02d66d) SHA1(1534f4403d2a0f68ba6e35186fe7595d33de34b1))\ ROM_REGION(0x10000, "bios", 0) /* Bios CPU (what is it?) */ \ ROM_LOAD("nss-c.dat" , 0, 0x8000, CRC(a8e202b3) SHA1(b7afcfe4f5cf15df53452dc04be81929ced1efb2) ) /* bios */ \ diff --git a/src/mame/machine/snesdsp1.c b/src/mame/machine/snesdsp1.c index b6380699188..06c37e01f26 100644 --- a/src/mame/machine/snesdsp1.c +++ b/src/mame/machine/snesdsp1.c @@ -321,7 +321,7 @@ static void DSP1_setDr(UINT8 iDr) static void DSP1_reset(running_machine *machine) { UINT32 i; - UINT8 *dspin = memory_region(machine, "user6"); + UINT8 *dspin = memory_region(machine, "addons"); mSr = DRC|RQM; mSrLowByteAccess = FALSE; diff --git a/src/mame/machine/snesdsp3.c b/src/mame/machine/snesdsp3.c index 52d2fddfef6..75fe34fb14f 100644 --- a/src/mame/machine/snesdsp3.c +++ b/src/mame/machine/snesdsp3.c @@ -1022,7 +1022,7 @@ UINT8 DSP3_read( UINT16 dsp3_address ) void InitDSP3( running_machine *machine ) { UINT32 i; - UINT8 *dspin = memory_region(machine, "user6"); + UINT8 *dspin = memory_region(machine, "addons"); DSP3_Reset();