removed a debug counter
This commit is contained in:
parent
208658bd2f
commit
67835c7a07
2 changed files with 0 additions and 4 deletions
3
cpu.cpp
3
cpu.cpp
|
@ -1344,11 +1344,8 @@ bool cpu::single_operand_instructions(const uint16_t instr)
|
||||||
|
|
||||||
// retrieve word from '15/14'-stack
|
// retrieve word from '15/14'-stack
|
||||||
uint16_t v = popStack();
|
uint16_t v = popStack();
|
||||||
|
|
||||||
bool set_flags = true;
|
bool set_flags = true;
|
||||||
|
|
||||||
mtpi_count++;
|
|
||||||
|
|
||||||
if (dst_mode == 0)
|
if (dst_mode == 0)
|
||||||
setRegister(dst_reg, v, rm_prev);
|
setRegister(dst_reg, v, rm_prev);
|
||||||
else {
|
else {
|
||||||
|
|
1
cpu.h
1
cpu.h
|
@ -53,7 +53,6 @@ private:
|
||||||
uint64_t running_since { 0 };
|
uint64_t running_since { 0 };
|
||||||
uint64_t wait_time { 0 };
|
uint64_t wait_time { 0 };
|
||||||
bool it_is_a_trap { false };
|
bool it_is_a_trap { false };
|
||||||
uint64_t mtpi_count { 0 };
|
|
||||||
|
|
||||||
bool debug_mode { false };
|
bool debug_mode { false };
|
||||||
std::vector<std::pair<uint16_t, std::string> > stacktrace;
|
std::vector<std::pair<uint16_t, std::string> > stacktrace;
|
||||||
|
|
Loading…
Add table
Reference in a new issue