From 08206eea56e7749c7a74382e0cb54f70102e1f6b Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 21 May 2017 09:47:53 -0400 Subject: [PATCH] This logging has outlived its usefulness for now. --- Processors/Z80/Z80AllRAM.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Processors/Z80/Z80AllRAM.cpp b/Processors/Z80/Z80AllRAM.cpp index ef5b8b3e7..53583daef 100644 --- a/Processors/Z80/Z80AllRAM.cpp +++ b/Processors/Z80/Z80AllRAM.cpp @@ -16,14 +16,14 @@ AllRAMProcessor::AllRAMProcessor() : ::CPU::AllRAMProcessor(65536) {} int AllRAMProcessor::perform_machine_cycle(const MachineCycle *cycle) { switch(cycle->operation) { case BusOperation::ReadOpcode: - printf("! "); +// printf("! "); check_address_for_trap(*cycle->address); case BusOperation::Read: - printf("r %04x [%02x] AF:%04x BC:%04x DE:%04x HL:%04x SP:%04x\n", *cycle->address, memory_[*cycle->address], get_value_of_register(CPU::Z80::Register::AF), get_value_of_register(CPU::Z80::Register::BC), get_value_of_register(CPU::Z80::Register::DE), get_value_of_register(CPU::Z80::Register::HL), get_value_of_register(CPU::Z80::Register::StackPointer)); +// printf("r %04x [%02x] AF:%04x BC:%04x DE:%04x HL:%04x SP:%04x\n", *cycle->address, memory_[*cycle->address], get_value_of_register(CPU::Z80::Register::AF), get_value_of_register(CPU::Z80::Register::BC), get_value_of_register(CPU::Z80::Register::DE), get_value_of_register(CPU::Z80::Register::HL), get_value_of_register(CPU::Z80::Register::StackPointer)); *cycle->value = memory_[*cycle->address]; break; case BusOperation::Write: - printf("w %04x\n", *cycle->address); +// printf("w %04x\n", *cycle->address); memory_[*cycle->address] = *cycle->value; break;