summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/f2mc16/f2mc16.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/f2mc16/f2mc16.h')
-rw-r--r--src/devices/cpu/f2mc16/f2mc16.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/devices/cpu/f2mc16/f2mc16.h b/src/devices/cpu/f2mc16/f2mc16.h
index 1467aa1462c..02342ed883b 100644
--- a/src/devices/cpu/f2mc16/f2mc16.h
+++ b/src/devices/cpu/f2mc16/f2mc16.h
@@ -98,10 +98,12 @@ private:
}
inline void write_8(u32 addr, u8 data)
{
+// printf("write %02x to %08x\n", data, addr);
m_program->write_byte(addr, data);
}
inline void write_16(u32 addr, u16 data)
{
+// printf("write %04x to %08x\n", data, addr);
if (addr & 1)
{
m_program->write_byte(addr, data & 0xff);
@@ -114,6 +116,7 @@ private:
}
inline void write_32(u32 addr, u32 data)
{
+ //printf("write %08x to %08x\n", data, addr);
if (addr & 3)
{
m_program->write_byte(addr, data & 0xff);
@@ -402,6 +405,7 @@ private:
m_icount -= 4;
}
+ void opcodes_bo6c(u8 operand);
void opcodes_str6e(u8 operand);
void opcodes_2b6f(u8 operand);
void opcodes_ea70(u8 operand);