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;