summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/deco102.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/deco102.c')
-rw-r--r--src/mame/machine/deco102.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/deco102.c b/src/mame/machine/deco102.c
index caa40be3cde..8fb0d0a0303 100644
--- a/src/mame/machine/deco102.c
+++ b/src/mame/machine/deco102.c
@@ -50,7 +50,7 @@ static UINT16 decrypt(UINT16 data, int address, int select_xor)
void deco102_decrypt_cpu(running_machine &machine, const char *cputag, int address_xor, int data_select_xor, int opcode_select_xor)
{
int i;
- address_space &space = *machine.device(cputag)->memory().space(AS_PROGRAM);
+ address_space &space = machine.device(cputag)->memory().space(AS_PROGRAM);
UINT16 *rom = (UINT16 *)machine.root_device().memregion(cputag)->base();
int size = machine.root_device().memregion(cputag)->bytes();
UINT16 *opcodes = auto_alloc_array(machine, UINT16, size / 2);