summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2012-01-06 18:12:39 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2012-01-06 18:12:39 +0000
commite43b42a3863745e19743257a2f012ab178524a66 (patch)
tree700e65b72da91abc2200e1ca60fb296de15228f0 /src
parent532dff205f5f307aadc5e87e266fcf151af94dd2 (diff)
An update to last commit
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/pgm.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/pgm.c b/src/mame/drivers/pgm.c
index 4acc9aeeadc..8b8d3056581 100644
--- a/src/mame/drivers/pgm.c
+++ b/src/mame/drivers/pgm.c
@@ -4160,12 +4160,12 @@ static void expand_colourdata( running_machine &machine )
-static void pgm_basic_init( running_machine &machine )
+static void pgm_basic_init( running_machine &machine, bool set_bank = true )
{
pgm_state *state = machine.driver_data<pgm_state>();
UINT8 *ROM = machine.region("maincpu")->base();
- if (ROM) memory_set_bankptr(machine, "bank1", &ROM[0x100000]);
+ if (set_bank) memory_set_bankptr(machine, "bank1", &ROM[0x100000]);
expand_32x32x5bpp(machine);
expand_colourdata(machine);
@@ -5598,21 +5598,21 @@ void install_asic27a_espgal(running_machine& machine)
static DRIVER_INIT( ddp3 )
{
- pgm_basic_init(machine);
+ pgm_basic_init(machine, false);
pgm_py2k2_decrypt(machine); // yes, it's the same as photo y2k2
install_asic27a_ddp3(machine);
}
static DRIVER_INIT( ket )
{
- pgm_basic_init(machine);
+ pgm_basic_init(machine, false);
pgm_ket_decrypt(machine);
install_asic27a_ket(machine);
}
static DRIVER_INIT( espgal )
{
- pgm_basic_init(machine);
+ pgm_basic_init(machine, false);
pgm_espgal_decrypt(machine);
install_asic27a_espgal(machine);
}