diff --git a/OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm b/OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm index 207eeb643..d5bf8dc34 100644 --- a/OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm +++ b/OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm @@ -53,12 +53,15 @@ void shift(ShiftType type, uint32_t &source, uint32_t amount, uint32_t *carry) { } } + struct Scheduler { template void perform(Condition condition, DataProcessing fields) { if(!status.test(condition)) { return; } + // TODO: how does register 15 fit into all of below? As an operand or as a target? + constexpr DataProcessingFlags flags(f); auto &destination = registers_[fields.destination()]; const auto &operand1 = registers_[fields.operand1()]; @@ -113,6 +116,8 @@ struct Scheduler { if constexpr (shift_sets_carry) { status.set_c(rotate_carry); } + + // TODO: If register 15 was in use as a destination, write back and clean up. } template void perform(Condition, Multiply) {}