1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-01 14:41:38 +00:00

fix typo in comment

This commit is contained in:
Sam M W 2024-04-23 18:10:02 +01:00
parent 1f3739cc12
commit a98809e4c2

View File

@ -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),