diff --git a/OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm b/OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm new file mode 100644 index 000000000..a3eba5edf --- /dev/null +++ b/OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm @@ -0,0 +1,25 @@ +// +// ARMDecoderTests.m +// Clock Signal +// +// Created by Thomas Harte on 16/02/2024. +// Copyright 2024 Thomas Harte. All rights reserved. +// + +#import + +#include "../../../InstructionSets/ARM/OperationMapper.hpp" + +using namespace InstructionSet::ARM; + +@interface ARMDecoderTests : XCTestCase +@end + +@implementation ARMDecoderTests + +- (void)testXYX { +// const auto intr = Instruction(1); +// NSLog(@"%d", intr.operation()); +} + +@end