1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-01 13:58:20 +00:00

Remove temporary hackery.

This commit is contained in:
Thomas Harte 2021-02-19 22:47:50 -05:00
parent 28ce675c96
commit f6466fd657
2 changed files with 0 additions and 6 deletions

View File

@ -80,7 +80,6 @@ template <typename BusHandler, bool uses_ready_line> class Processor: public Pro
private:
BusHandler &bus_handler_;
int count_ = 0;
};
#include "Implementation/65816Implementation.hpp"

View File

@ -30,11 +30,6 @@ template <typename BusHandler, bool uses_ready_line> void Processor<BusHandler,
// Process for as much time is left and/or until ready is signalled.
while((!uses_ready_line || !ready_line_) && number_of_cycles > Cycles(0)) {
++count_;
if(count_ == 148933250) {
printf("");
}
const MicroOp operation = *next_op_;
++next_op_;