I guess its a working execution loop?

This commit is contained in:
2025-10-04 14:07:42 +02:00
parent bb0007707c
commit 52952840aa
3 changed files with 44 additions and 1 deletions

View File

@@ -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 {