From 5090759570ad28e20befb3ee981ed8adc25b7aec Mon Sep 17 00:00:00 2001 From: arbee Date: Sat, 10 Dec 2016 10:18:30 -0500 Subject: [PATCH] removed printf (nw) --- src/devices/cpu/i960/i960.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/devices/cpu/i960/i960.cpp b/src/devices/cpu/i960/i960.cpp index acdb0c4e927..07e908ceb2b 100644 --- a/src/devices/cpu/i960/i960.cpp +++ b/src/devices/cpu/i960/i960.cpp @@ -1083,7 +1083,6 @@ void i960_cpu_device::execute_op(uint32_t opcode) m_AC &= ~7; // clear CC t1 = get_1_ri(opcode); t2 = get_2_ri(opcode); - printf("t1 %08x t2 %08x\n", t1, t2); if ((t1 & 0xff000000) == (t2 & 0xff000000) || (t1 & 0x00ff0000) == (t2 & 0x00ff0000) || (t1 & 0x0000ff00) == (t2 & 0x0000ff00) ||