diff options
| author | taitep <taitep@taitep.se> | 2025-10-04 14:07:42 +0200 |
|---|---|---|
| committer | taitep <taitep@taitep.se> | 2025-10-04 14:07:42 +0200 |
| commit | 52952840aa57512f3bbf06ea0054b5b742aabf20 (patch) | |
| tree | a064ac32313abbf79480d482e6ac67d6b87fea66 /src/instructions.rs | |
| parent | bb0007707c7f67f368eb1e0c644d33f986be113f (diff) | |
I guess its a working execution loop?
Diffstat (limited to 'src/instructions.rs')
| -rw-r--r-- | src/instructions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/instructions.rs b/src/instructions.rs index e16894e..ed264f9 100644 --- a/src/instructions.rs +++ b/src/instructions.rs @@ -12,7 +12,7 @@ use crate::{ decode::Instruction, }; -type Runner = fn(&mut Core, Instruction) -> Result<(), InstructionResult>; +type Runner = fn(&mut Core, Instruction) -> InstructionResult; #[derive(Clone, Copy)] struct InstructionHandler { |
