From a9ceef5c379c93000064dda78b517a7b590e3507 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 31 Mar 2019 22:27:33 -0400 Subject: [PATCH] Improves communication slightly. --- Processors/68000/Implementation/68000Implementation.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Processors/68000/Implementation/68000Implementation.hpp b/Processors/68000/Implementation/68000Implementation.hpp index 73d38742e..56654050d 100644 --- a/Processors/68000/Implementation/68000Implementation.hpp +++ b/Processors/68000/Implementation/68000Implementation.hpp @@ -48,10 +48,10 @@ template void Processor: const uint16_t next_instruction = prefetch_queue_.halves.high.full; if(!instructions[next_instruction].micro_operations) { // TODO: once all instructions are implemnted, this should be an instruction error. - std::cerr << "68000 Abilities exhausted; can't manage instruction " << std::hex << next_instruction << std::endl; + std::cerr << "68000 Abilities exhausted; can't manage instruction " << std::hex << next_instruction << " from " << (program_counter_.full - 4) << std::endl; return; } else { - std::cout << "Performing " << std::hex << next_instruction << std::endl; + std::cout << "Performing " << std::hex << next_instruction << " from " << (program_counter_.full - 4) << std::endl; } active_program_ = &instructions[next_instruction];