diff options
author | 2009-10-25 05:34:14 +0000 | |
---|---|---|
committer | 2009-10-25 05:34:14 +0000 | |
commit | eb2ba6cf6c05ed2c86f9942a2dbd8d0c20d748ce (patch) | |
tree | ac97253b9dac0c97fd8bd5aefe2a75230895d05b /src/emu/cpu/dsp56k | |
parent | c57cc3659d4f227548bdaceffa7203f3099b9c7d (diff) |
Cleanups and version bump.mame0134u4
Diffstat (limited to 'src/emu/cpu/dsp56k')
-rw-r--r-- | src/emu/cpu/dsp56k/dsp56mem.c | 2 | ||||
-rw-r--r-- | src/emu/cpu/dsp56k/dsp56pcu.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/dsp56k/dsp56mem.c b/src/emu/cpu/dsp56k/dsp56mem.c index 2bd17e87168..c702ff107c2 100644 --- a/src/emu/cpu/dsp56k/dsp56mem.c +++ b/src/emu/cpu/dsp56k/dsp56mem.c @@ -383,7 +383,7 @@ static void HRIE_bit_set(dsp56k_core* cpustate, UINT16 value) //static UINT16 DMA_bit(dsp56k_core* cpustate) { return ((HSR & 0x0080) != 0); } //static UINT16 HF1_bit(dsp56k_core* cpustate) { return ((HSR & 0x0010) != 0); } //static UINT16 HF0_bit(dsp56k_core* cpustate) { return ((HSR & 0x0008) != 0); } -//static UINT16 HCP_bit(dsp56k_core* cpustate) { return ((HSR & 0x0004) != 0); } +//static UINT16 HCP_bit(dsp56k_core* cpustate) { return ((HSR & 0x0004) != 0); } static UINT16 HTDE_bit(dsp56k_core* cpustate) { return ((HSR & 0x0002) != 0); } static UINT16 HRDF_bit(dsp56k_core* cpustate) { return ((HSR & 0x0001) != 0); } diff --git a/src/emu/cpu/dsp56k/dsp56pcu.c b/src/emu/cpu/dsp56k/dsp56pcu.c index 464439028e7..7748a61376f 100644 --- a/src/emu/cpu/dsp56k/dsp56pcu.c +++ b/src/emu/cpu/dsp56k/dsp56pcu.c @@ -3,7 +3,7 @@ /* ************************************************************************* */ /* MR CCR */ /* |-------------------------------------| |-------------------------------| */ -/* | LF | FV | * | * | S1 | S0 | I1 | I0 | | S | L | E | U | N | Z | V | C | */ +/* | LF | FV | * | * | S1 | S0 | I1 | I0 | | S | L | E | U | N | Z | V | C | */ /* |-------------------------------------| |-------------------------------| */ /* */ /* ************************************************************************* */ @@ -343,7 +343,7 @@ static void dsp56k_irq_table_init(void) dsp56k_set_irq_source(31, 0x003e, "Host Command 8"); } -/* Clear all entries from the pending table */ +/* Clear all entries from the pending table */ static void dsp56k_clear_pending_interrupts(dsp56k_core* cpustate) { int i; |