summaryrefslogtreecommitdiff
path: root/src/instructions.rs
diff options
context:
space:
mode:
authortaitep <taitep@taitep.se>2025-10-04 14:07:42 +0200
committertaitep <taitep@taitep.se>2025-10-04 14:07:42 +0200
commit52952840aa57512f3bbf06ea0054b5b742aabf20 (patch)
treea064ac32313abbf79480d482e6ac67d6b87fea66 /src/instructions.rs
parentbb0007707c7f67f368eb1e0c644d33f986be113f (diff)
I guess its a working execution loop?
Diffstat (limited to 'src/instructions.rs')
-rw-r--r--src/instructions.rs2
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 {