mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-14 23:27:26 +00:00
Corrects recursive call.
This commit is contained in:
@@ -60,7 +60,7 @@ class Executor {
|
||||
template<int operation, int addressing_mode> void fill_operation(Action::Performer *target) {
|
||||
*target = &Executor::perform<Operation(operation), AddressingMode(addressing_mode)>;
|
||||
if constexpr (addressing_mode+1 < MaxAddressingMode) {
|
||||
fill<operation, addressing_mode+1>(target + 1);
|
||||
fill_operation<operation, addressing_mode+1>(target + 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user