summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/i8085/i8085cpu.h
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/i8085/i8085cpu.h
parent6763b10bf005f0bcd1ba23e440d652b31dcac447 (diff)
Results of running the latest srcclean.
Diffstat (limited to 'src/emu/cpu/i8085/i8085cpu.h')
-rw-r--r--src/emu/cpu/i8085/i8085cpu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/i8085/i8085cpu.h b/src/emu/cpu/i8085/i8085cpu.h
index 850a1a44923..2492532a33e 100644
--- a/src/emu/cpu/i8085/i8085cpu.h
+++ b/src/emu/cpu/i8085/i8085cpu.h
@@ -123,18 +123,18 @@
/* i/o */
#define M_IN \
- cpustate->STATUS = 0x42; \
+ cpustate->STATUS = 0x42; \
cpustate->WZ.d=ARG(cpustate); \
cpustate->AF.b.h=memory_read_byte_8le(cpustate->io, cpustate->WZ.d);
#define M_OUT \
- cpustate->STATUS = 0x10; \
+ cpustate->STATUS = 0x10; \
cpustate->WZ.d=ARG(cpustate); \
memory_write_byte_8le(cpustate->io, cpustate->WZ.d,cpustate->AF.b.h)
/* stack */
#define M_PUSH(R) { \
- cpustate->STATUS = 0x04; \
+ cpustate->STATUS = 0x04; \
memory_write_byte_8le(cpustate->program, --cpustate->SP.w.l, cpustate->R.b.h); \
memory_write_byte_8le(cpustate->program, --cpustate->SP.w.l, cpustate->R.b.l); \
}