summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/adsp2100/2100ops.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-12-28 09:04:00 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-12-28 09:04:00 +0000
commitbd24fb23c10ca9fbf63e2191dc8e58a87b83b325 (patch)
tree5ba5c3cffeb38fb8f492e030130268c4bcbafb4d /src/emu/cpu/adsp2100/2100ops.c
parent6763b10bf005f0bcd1ba23e440d652b31dcac447 (diff)
Results of running the latest srcclean.
Diffstat (limited to 'src/emu/cpu/adsp2100/2100ops.c')
-rw-r--r--src/emu/cpu/adsp2100/2100ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/adsp2100/2100ops.c b/src/emu/cpu/adsp2100/2100ops.c
index 0c3c95e2727..287437000ea 100644
--- a/src/emu/cpu/adsp2100/2100ops.c
+++ b/src/emu/cpu/adsp2100/2100ops.c
@@ -51,7 +51,7 @@
#define CALC_V(s,d,r) (adsp->astat |= ((s ^ d ^ r ^ (r >> 1)) >> 13) & 0x04)
#define CALC_C(r) (adsp->astat |= (r >> 13) & 0x08)
#define CALC_C_SUB(r) (adsp->astat |= (~r >> 13) & 0x08)
-#define CALC_NZ(r) CLR_FLAGS; CALC_N(r); CALC_Z(r)
+#define CALC_NZ(r) CLR_FLAGS; CALC_N(r); CALC_Z(r)
#define CALC_NZV(s,d,r) CLR_FLAGS; CALC_N(r); CALC_Z(r); CALC_V(s,d,r)
#define CALC_NZVC(s,d,r) CLR_FLAGS; CALC_N(r); CALC_Z(r); CALC_V(s,d,r); CALC_C(r)
#define CALC_NZVC_SUB(s,d,r) CLR_FLAGS; CALC_N(r); CALC_Z(r); CALC_V(s,d,r); CALC_C_SUB(r)
@@ -295,7 +295,7 @@ INLINE void stat_stack_pop(adsp2100_state *adsp)
update_mstat(adsp);
adsp->imask = adsp->stat_stack[adsp->stat_sp][1];
adsp->astat = adsp->stat_stack[adsp->stat_sp][2];
- check_irqs(adsp);
+ check_irqs(adsp);
}