diff options
Diffstat (limited to 'src/emu/cpu/z180/z180.c')
-rw-r--r-- | src/emu/cpu/z180/z180.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/z180/z180.c b/src/emu/cpu/z180/z180.c index 5f9139ffc78..546cef949c0 100644 --- a/src/emu/cpu/z180/z180.c +++ b/src/emu/cpu/z180/z180.c @@ -1945,8 +1945,8 @@ static CPU_INIT( z180 ) cpustate->daisy.init(device, (const z80_daisy_config *)device->baseconfig().static_config()); cpustate->irq_callback = irqcallback; - SZHVC_add = auto_alloc_array(device->machine, UINT8, 2*256*256); - SZHVC_sub = auto_alloc_array(device->machine, UINT8, 2*256*256); + SZHVC_add = auto_alloc_array(device->machine(), UINT8, 2*256*256); + SZHVC_sub = auto_alloc_array(device->machine(), UINT8, 2*256*256); /* set up the state table */ { |