From 99492c2ec2787e52585c1c7ce1abdef3d7fa8325 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 10 Oct 2021 18:19:50 -0700 Subject: [PATCH] Further tweak logging. --- Machines/Amiga/Chipset.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Machines/Amiga/Chipset.cpp b/Machines/Amiga/Chipset.cpp index ef8f4fcf3..558643d62 100644 --- a/Machines/Amiga/Chipset.cpp +++ b/Machines/Amiga/Chipset.cpp @@ -924,7 +924,7 @@ void Chipset::DiskDMA::set_length(uint16_t value) { buffer_read_ = buffer_write_ = 0; if(dma_enable_) { - printf("Disk DMA [%s of %d to %06x]\n", write_ ? "write" : "read", length_, pointer_[0]); + LOG("Disk DMA [" << (write_ ? "write" : "read") << " of " << length_ << " to " << PADHEX(8) << pointer_[0]); } } @@ -1109,7 +1109,6 @@ void Chipset::DiskController::process_index_hole() { // Resync word output. Experimental!! bit_count_ = 0; - printf("IH\n"); } void Chipset::DiskController::set_mtr_sel_side_dir_step(uint8_t value) {