File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ class cpu_device
59
59
void add_mocked_proc_hook (condition_mocked_proc mocked_proc_def);
60
60
void execute_interrupt ();
61
61
void execute_mocked_proc ();
62
- void execute_standard_instruction (uint64_t & cycle_count );
62
+ void execute_standard_instruction ();
63
63
void print ();
64
64
vector<uint16_t > get_call_stack ();
65
65
};
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ void cpu_device::execute()
59
59
if (is_mocked_proc_instruction ())
60
60
execute_mocked_proc ();
61
61
else
62
- execute_standard_instruction (cycle_count );
62
+ execute_standard_instruction ();
63
63
64
64
for (auto filter : filters)
65
65
if (!filter->post ())
@@ -212,9 +212,9 @@ void cpu_device::execute_mocked_proc()
212
212
}
213
213
}
214
214
215
- void cpu_device::execute_standard_instruction (uint64_t & cycle_count )
215
+ void cpu_device::execute_standard_instruction ()
216
216
{
217
- cpu->Run (1 , cycle_count , cpu->INST_COUNT );
217
+ cpu->Run (1 , get_cycle_count () , cpu->INST_COUNT );
218
218
}
219
219
220
220
void cpu_device::print ()
You can’t perform that action at this time.
0 commit comments