From 4fac730add3e35388396af4b9592b8cc68df5160 Mon Sep 17 00:00:00 2001 From: nick-less Date: Tue, 8 Jan 2019 20:18:20 +0100 Subject: [PATCH] removed obsolete log entry --- src/opcodes/OpCode_Interrupt.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/opcodes/OpCode_Interrupt.cpp b/src/opcodes/OpCode_Interrupt.cpp index 3054992..ddc9adb 100644 --- a/src/opcodes/OpCode_Interrupt.cpp +++ b/src/opcodes/OpCode_Interrupt.cpp @@ -80,7 +80,6 @@ void Cpu65816::executeInterrupt(OpCode &opCode) { if (mCpuStatus.emulationFlag()) { Address newProgramAddress(mProgramAddress.getBank(), mStack.pull16Bit()); - Log::vrb("CPU").str(" pull ").hex(newProgramAddress.getOffset()).show(); mProgramAddress = newProgramAddress; addToCycles(6); } else {