diff --git a/InstructionSets/M50740/Executor.cpp b/InstructionSets/M50740/Executor.cpp index bef9e9a3c..b071013ed 100644 --- a/InstructionSets/M50740/Executor.cpp +++ b/InstructionSets/M50740/Executor.cpp @@ -318,6 +318,11 @@ template void Executor::perform(uint8_t *operand [[maybe_u case Operation::AND: set_nz(a_ &= *operand); break; case Operation::EOR: set_nz(a_ ^= *operand); break; + // TODO: + // + // BRK, FST, SLW, NOP, PHA, PHP, PLA, PLP, STP, + // ADC, SBC, BIT, CMP, CPX, CPY, ASL, LSR, COM, ROL, ROR, RRF + /* Operations affected by the index mode flag: ADC, AND, CMP, EOR, LDA, ORA, and SBC. */