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/dsp56mem.c | |
parent | c57cc3659d4f227548bdaceffa7203f3099b9c7d (diff) |
Cleanups and version bump.mame0134u4
Diffstat (limited to 'src/emu/cpu/dsp56k/dsp56mem.c')
-rw-r--r-- | src/emu/cpu/dsp56k/dsp56mem.c | 2 |
1 files changed, 1 insertions, 1 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); } |