diff options
author | 2009-12-28 09:04:00 +0000 | |
---|---|---|
committer | 2009-12-28 09:04:00 +0000 | |
commit | bd24fb23c10ca9fbf63e2191dc8e58a87b83b325 (patch) | |
tree | 5ba5c3cffeb38fb8f492e030130268c4bcbafb4d /src/emu/cpu/tms7000 | |
parent | 6763b10bf005f0bcd1ba23e440d652b31dcac447 (diff) |
Results of running the latest srcclean.
Diffstat (limited to 'src/emu/cpu/tms7000')
-rw-r--r-- | src/emu/cpu/tms7000/tms7000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/tms7000/tms7000.c b/src/emu/cpu/tms7000/tms7000.c index 5ccbb01d07c..2034cd6722e 100644 --- a/src/emu/cpu/tms7000/tms7000.c +++ b/src/emu/cpu/tms7000/tms7000.c @@ -113,7 +113,7 @@ INLINE tms7000_state *get_safe_token(const device_config *device) #define SR_I 0x10 /* Interrupt */ #define CLR_NZC pSR&=~(SR_N|SR_Z|SR_C) -#define CLR_NZCI pSR&=~(SR_N|SR_Z|SR_C|SR_I) +#define CLR_NZCI pSR&=~(SR_N|SR_Z|SR_C|SR_I) #define SET_C8(a) pSR|=((a&0x0100)>>1) #define SET_N8(a) pSR|=((a&0x0080)>>1) #define SET_Z(a) if(!a)pSR|=SR_Z |