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 | |
| parent | c57cc3659d4f227548bdaceffa7203f3099b9c7d (diff) | |
Cleanups and version bump.mame0134u4
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/cpu/dsp56k/dsp56mem.c | 2 | ||||
| -rw-r--r-- | src/emu/cpu/dsp56k/dsp56pcu.c | 4 | ||||
| -rw-r--r-- | src/emu/cpu/i386/i386.h | 50 |
3 files changed, 28 insertions, 28 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; diff --git a/src/emu/cpu/i386/i386.h b/src/emu/cpu/i386/i386.h index cf5bbcea286..9244c27b81f 100644 --- a/src/emu/cpu/i386/i386.h +++ b/src/emu/cpu/i386/i386.h @@ -1,25 +1,25 @@ -#pragma once - -#ifndef __I386INTF_H__ -#define __I386INTF_H__ - -#define INPUT_LINE_A20 1 - -#include "cpuintrf.h" - -// mingw has this defined for 32-bit compiles -#undef i386 - -CPU_GET_INFO( i386 ); -CPU_GET_INFO( i486 ); -CPU_GET_INFO( pentium ); -CPU_GET_INFO( mediagx ); - -#define CPU_I386 CPU_GET_INFO_NAME( i386 ) -#define CPU_I486 CPU_GET_INFO_NAME( i486 ) -#define CPU_PENTIUM CPU_GET_INFO_NAME( pentium ) -#define CPU_MEDIAGX CPU_GET_INFO_NAME( mediagx ) - - - -#endif /* __I386INTF_H__ */ +#pragma once
+
+#ifndef __I386INTF_H__
+#define __I386INTF_H__
+
+#define INPUT_LINE_A20 1
+
+#include "cpuintrf.h"
+
+// mingw has this defined for 32-bit compiles
+#undef i386
+
+CPU_GET_INFO( i386 );
+CPU_GET_INFO( i486 );
+CPU_GET_INFO( pentium );
+CPU_GET_INFO( mediagx );
+
+#define CPU_I386 CPU_GET_INFO_NAME( i386 )
+#define CPU_I486 CPU_GET_INFO_NAME( i486 )
+#define CPU_PENTIUM CPU_GET_INFO_NAME( pentium )
+#define CPU_MEDIAGX CPU_GET_INFO_NAME( mediagx )
+
+
+
+#endif /* __I386INTF_H__ */
|
