1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-29 00:29:34 +00:00

Revoke temporary debugging.

This commit is contained in:
Thomas Harte 2021-07-25 19:59:10 -04:00
parent b7bed027d7
commit 8d2d4c850f
2 changed files with 0 additions and 10 deletions

View File

@ -304,14 +304,6 @@ template <class T, bool dtack_is_implicit, bool signal_will_perform> 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

View File

@ -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;