diff --git a/Processors/68000/Implementation/68000Implementation.hpp b/Processors/68000/Implementation/68000Implementation.hpp index 53331f40f..8e96ff94a 100644 --- a/Processors/68000/Implementation/68000Implementation.hpp +++ b/Processors/68000/Implementation/68000Implementation.hpp @@ -304,14 +304,6 @@ template void Proces } #endif - static uint32_t last_a7 = address_[7].full; - log |= (program_counter_.full - 4 == 0x00fcafba); -// if(log) { - if(log && last_a7 != address_[7].full) { - last_a7 = address_[7].full; - printf("%08x a7:%08x\n", program_counter_.full - 4, address_[7].full); - } - decoded_instruction_.full = prefetch_queue_.halves.high.full; #ifndef NDEBUG diff --git a/Processors/68000/Implementation/68000Storage.hpp b/Processors/68000/Implementation/68000Storage.hpp index acac57523..e2b03d948 100644 --- a/Processors/68000/Implementation/68000Storage.hpp +++ b/Processors/68000/Implementation/68000Storage.hpp @@ -553,8 +553,6 @@ class ProcessorStorage { inline uint16_t get_status() const; inline void set_status(uint16_t); - bool log = false; - private: friend struct ProcessorStorageConstructor; friend class ProcessorStorageTests;