1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-10-06 06:16:33 +00:00

Move set_pc into the operation-specific group.

This commit is contained in:
Thomas Harte
2022-05-09 16:20:15 -04:00
parent 0af8660181
commit 2ca1eb4cf8
3 changed files with 3 additions and 3 deletions

View File

@@ -361,7 +361,7 @@ template <Model model, typename BusHandler>
void Executor<model, BusHandler>::stop() {}
template <Model model, typename BusHandler>
void Executor<model, BusHandler>::set_pc(uint32_t address) {
void Executor<model, BusHandler>::jmp(uint32_t address) {
program_counter_.l = address;
}