mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-27 06:35:04 +00:00
Remove temporary hackery.
This commit is contained in:
parent
28ce675c96
commit
f6466fd657
@ -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"
|
||||
|
@ -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_;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user