From 83276f98e48fb337ecc7c9c29ee0d73abdc71575 Mon Sep 17 00:00:00 2001 From: Toby Jaffey Date: Sun, 14 Dec 2025 21:41:01 +0000 Subject: [PATCH] Move shared.h --- test/opcodes/rom/rom.c | 2 +- test/opcodes/{rom => }/shared.h | 0 test/opcodes/test/tests.c | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename test/opcodes/{rom => }/shared.h (100%) diff --git a/test/opcodes/rom/rom.c b/test/opcodes/rom/rom.c index 0cb87c9..064affa 100644 --- a/test/opcodes/rom/rom.c +++ b/test/opcodes/rom/rom.c @@ -1,5 +1,5 @@ #include "uvm32_target.h" -#include "shared.h" +#include "../shared.h" void main(void) { switch(syscall(SYSCALL_PICKTEST, 0, 0)) { diff --git a/test/opcodes/rom/shared.h b/test/opcodes/shared.h similarity index 100% rename from test/opcodes/rom/shared.h rename to test/opcodes/shared.h diff --git a/test/opcodes/test/tests.c b/test/opcodes/test/tests.c index 026aa96..6736cd5 100644 --- a/test/opcodes/test/tests.c +++ b/test/opcodes/test/tests.c @@ -4,7 +4,7 @@ #include "../common/uvm32_common_custom.h" #include "rom-header.h" -#include "shared.h" +#include "../shared.h" static uvm32_state_t vmst; static uvm32_evt_t evt;