diff options
author | 2008-12-18 10:11:10 +0000 | |
---|---|---|
committer | 2008-12-18 10:11:10 +0000 | |
commit | 72b283a0d1b6b7eccc62d26afc629cf38dba5e4e (patch) | |
tree | 8d27cdb104dc374cb848af137f80536aedafb5eb /src/emu/cpu/dsp56k | |
parent | aa7e2482e287fc9e48b27e17e8d5b458bf6c0a04 (diff) |
Removed index and clock parameters from CPU_INIT function.
Diffstat (limited to 'src/emu/cpu/dsp56k')
-rw-r--r-- | src/emu/cpu/dsp56k/dsp56k.c | 6 | ||||
-rw-r--r-- | src/emu/cpu/dsp56k/dsp56pcu.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/cpu/dsp56k/dsp56k.c b/src/emu/cpu/dsp56k/dsp56k.c index 07338afdf78..79661565673 100644 --- a/src/emu/cpu/dsp56k/dsp56k.c +++ b/src/emu/cpu/dsp56k/dsp56k.c @@ -150,9 +150,9 @@ static CPU_INIT( dsp56k ) dsp56k_core* cpustate = device->token; // Call specific module inits - pcu_init(cpustate, index); - // agu_init(cpustate, index); - // alu_init(cpustate, index); + pcu_init(cpustate); + // agu_init(cpustate); + // alu_init(cpustate); // HACK - You're not in bootstrap mode upon bootup cpustate->bootstrap_mode = BOOTSTRAP_OFF; diff --git a/src/emu/cpu/dsp56k/dsp56pcu.c b/src/emu/cpu/dsp56k/dsp56pcu.c index e924f1b45d9..4083a983bb6 100644 --- a/src/emu/cpu/dsp56k/dsp56pcu.c +++ b/src/emu/cpu/dsp56k/dsp56pcu.c @@ -113,7 +113,7 @@ UINT8 dsp56k_operating_mode(dsp56k_core* cpustate) } -static void pcu_init(dsp56k_core* cpustate, int index) +static void pcu_init(dsp56k_core* cpustate) { // Init the irq table dsp56k_irq_table_init(); |