renamed "user6" region to the more self explanatory "addons"

This commit is contained in:
Fabio Priuli 2009-09-17 22:54:05 +00:00
parent 394338e5f2
commit dda99dfc48
3 changed files with 3 additions and 3 deletions

View File

@ -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 */ \

View File

@ -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;

View File

@ -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();