From f9cbec668b3818504fd6eb173a3fd7ed7af8d8b8 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 21 Feb 2024 15:43:24 -0500 Subject: [PATCH] Add empty shell for tests. --- .../Mac/Clock SignalTests/ARMDecoderTests.mm | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm 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