From def69ce6d5482bfa08b3a13bca44079e68d3e3af Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 26 Feb 2024 15:12:39 -0500 Subject: [PATCH] Add notes on R15. --- OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm | 5 +++++ 1 file changed, 5 insertions(+) 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) {}