From 2444ef52d11e85dac43e1ef6d51f5f33f1267121 Mon Sep 17 00:00:00 2001 From: Sam M W Date: Tue, 23 Apr 2024 18:10:02 +0100 Subject: [PATCH] fix typo in comment --- src/instruction.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/instruction.rs b/src/instruction.rs index d3b1775..6c3b446 100644 --- a/src/instruction.rs +++ b/src/instruction.rs @@ -474,7 +474,7 @@ pub struct Cmos6502; impl crate::Variant for Cmos6502 { fn decode(opcode: u8) -> Option<(Instruction, AddressingMode)> { - // TODO: We obviously need to add the other CMOS isntructions here. + // TODO: We obviously need to add the other CMOS instructions here. match opcode { 0x6c => Some((Instruction::JMP, AddressingMode::IndirectWithFix)), _ => Nmos6502::decode(opcode),