From 87e350906ba41cb01aedcc6cb3a94aac24d75251 Mon Sep 17 00:00:00 2001 From: Skyth <19259897+blueskythlikesclouds@users.noreply.github.com> Date: Sun, 19 Jan 2025 22:39:12 +0300 Subject: [PATCH] Rebrand to XenonRecomp. --- CMakeLists.txt | 18 ++++++------- PowerAnalyse/CMakeLists.txt | 14 ---------- PowerRecomp/CMakeLists.txt | 24 ------------------ PowerUtils/CMakeLists.txt | 5 ---- XenonAnalyse/CMakeLists.txt | 14 ++++++++++ {PowerAnalyse => XenonAnalyse}/function.cpp | 0 {PowerAnalyse => XenonAnalyse}/function.h | 0 {PowerAnalyse => XenonAnalyse}/main.cpp | 0 XenonRecomp/CMakeLists.txt | 24 ++++++++++++++++++ {PowerRecomp => XenonRecomp}/main.cpp | 8 +++--- {PowerRecomp => XenonRecomp}/pch.h | 0 {PowerRecomp => XenonRecomp}/recompiler.cpp | 0 {PowerRecomp => XenonRecomp}/recompiler.h | 0 .../recompiler_config.cpp | 0 .../recompiler_config.h | 0 .../test_recompiler.cpp | 0 .../test_recompiler.h | 0 {PowerSample => XenonSample}/.gitignore | 0 {PowerSample => XenonSample}/CMakeLists.txt | 6 ++--- {PowerSample => XenonSample}/main.cpp | 0 {PowerTests => XenonTests}/.gitignore | 0 {PowerTests => XenonTests}/CMakeLists.txt | 6 ++--- XenonUtils/CMakeLists.txt | 10 ++++++++ {PowerUtils => XenonUtils}/byteswap.h | 0 {PowerUtils => XenonUtils}/disasm.cpp | 0 {PowerUtils => XenonUtils}/disasm.h | 0 {PowerUtils => XenonUtils}/elf.h | 0 {PowerUtils => XenonUtils}/file.h | 0 {PowerUtils => XenonUtils}/image.cpp | 0 {PowerUtils => XenonUtils}/image.h | 0 {PowerUtils => XenonUtils}/ppc_context.h | 0 {PowerUtils => XenonUtils}/section.h | 0 {PowerUtils => XenonUtils}/symbol.h | 0 {PowerUtils => XenonUtils}/symbol_table.h | 0 {PowerUtils => XenonUtils}/xbox.h | 0 {PowerUtils => XenonUtils}/xbox/xam_table.inc | 0 .../xbox/xboxkrnl_table.inc | 0 {PowerUtils => XenonUtils}/xdbf.h | 0 {PowerUtils => XenonUtils}/xdbf_wrapper.cpp | 0 {PowerUtils => XenonUtils}/xdbf_wrapper.h | 0 {PowerUtils => XenonUtils}/xex.cpp | 0 {PowerUtils => XenonUtils}/xex.h | 0 .../add-cond.cpp | 0 .../add-cond.elf | Bin tests/{PowerAnalyse => XenonAnalyse}/add.cpp | 0 tests/{PowerAnalyse => XenonAnalyse}/add.elf | Bin .../cond-fall.cpp | 0 .../cond-fall.elf | Bin tests/{PowerAnalyse => XenonAnalyse}/cond.cpp | 0 tests/{PowerAnalyse => XenonAnalyse}/cond.elf | Bin tests/{PowerAnalyse => XenonAnalyse}/loop.cpp | 0 tests/{PowerAnalyse => XenonAnalyse}/loop.elf | Bin .../private/.gitignore | 0 tests/compile-all.bat | 4 +-- 54 files changed, 69 insertions(+), 64 deletions(-) delete mode 100644 PowerAnalyse/CMakeLists.txt delete mode 100644 PowerRecomp/CMakeLists.txt delete mode 100644 PowerUtils/CMakeLists.txt create mode 100644 XenonAnalyse/CMakeLists.txt rename {PowerAnalyse => XenonAnalyse}/function.cpp (100%) rename {PowerAnalyse => XenonAnalyse}/function.h (100%) rename {PowerAnalyse => XenonAnalyse}/main.cpp (100%) create mode 100644 XenonRecomp/CMakeLists.txt rename {PowerRecomp => XenonRecomp}/main.cpp (82%) rename {PowerRecomp => XenonRecomp}/pch.h (100%) rename {PowerRecomp => XenonRecomp}/recompiler.cpp (100%) rename {PowerRecomp => XenonRecomp}/recompiler.h (100%) rename {PowerRecomp => XenonRecomp}/recompiler_config.cpp (100%) rename {PowerRecomp => XenonRecomp}/recompiler_config.h (100%) rename {PowerRecomp => XenonRecomp}/test_recompiler.cpp (100%) rename {PowerRecomp => XenonRecomp}/test_recompiler.h (100%) rename {PowerSample => XenonSample}/.gitignore (100%) rename {PowerSample => XenonSample}/CMakeLists.txt (57%) rename {PowerSample => XenonSample}/main.cpp (100%) rename {PowerTests => XenonTests}/.gitignore (100%) rename {PowerTests => XenonTests}/CMakeLists.txt (54%) create mode 100644 XenonUtils/CMakeLists.txt rename {PowerUtils => XenonUtils}/byteswap.h (100%) rename {PowerUtils => XenonUtils}/disasm.cpp (100%) rename {PowerUtils => XenonUtils}/disasm.h (100%) rename {PowerUtils => XenonUtils}/elf.h (100%) rename {PowerUtils => XenonUtils}/file.h (100%) rename {PowerUtils => XenonUtils}/image.cpp (100%) rename {PowerUtils => XenonUtils}/image.h (100%) rename {PowerUtils => XenonUtils}/ppc_context.h (100%) rename {PowerUtils => XenonUtils}/section.h (100%) rename {PowerUtils => XenonUtils}/symbol.h (100%) rename {PowerUtils => XenonUtils}/symbol_table.h (100%) rename {PowerUtils => XenonUtils}/xbox.h (100%) rename {PowerUtils => XenonUtils}/xbox/xam_table.inc (100%) rename {PowerUtils => XenonUtils}/xbox/xboxkrnl_table.inc (100%) rename {PowerUtils => XenonUtils}/xdbf.h (100%) rename {PowerUtils => XenonUtils}/xdbf_wrapper.cpp (100%) rename {PowerUtils => XenonUtils}/xdbf_wrapper.h (100%) rename {PowerUtils => XenonUtils}/xex.cpp (100%) rename {PowerUtils => XenonUtils}/xex.h (100%) rename tests/{PowerAnalyse => XenonAnalyse}/add-cond.cpp (100%) rename tests/{PowerAnalyse => XenonAnalyse}/add-cond.elf (100%) rename tests/{PowerAnalyse => XenonAnalyse}/add.cpp (100%) rename tests/{PowerAnalyse => XenonAnalyse}/add.elf (100%) rename tests/{PowerAnalyse => XenonAnalyse}/cond-fall.cpp (100%) rename tests/{PowerAnalyse => XenonAnalyse}/cond-fall.elf (100%) rename tests/{PowerAnalyse => XenonAnalyse}/cond.cpp (100%) rename tests/{PowerAnalyse => XenonAnalyse}/cond.elf (100%) rename tests/{PowerAnalyse => XenonAnalyse}/loop.cpp (100%) rename tests/{PowerAnalyse => XenonAnalyse}/loop.elf (100%) rename tests/{PowerAnalyse => XenonAnalyse}/private/.gitignore (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 76b48ce..e77cba7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,18 +14,18 @@ endif() set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$:Debug>") add_subdirectory(${THIRDPARTY_ROOT}) -set(POWERANALYSE_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/PowerAnalyse) -set(POWERUTILS_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/PowerUtils) -set(POWERRECOMP_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/PowerRecomp) +set(XENONANALYSE_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/XenonAnalyse) +set(XENONUTILS_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/XenonUtils) +set(XENONRECOMP_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/XenonRecomp) -project ("PowerRecomp-ALL") +project ("XenonRecomp-ALL") -add_subdirectory(${POWERANALYSE_ROOT}) -add_subdirectory(${POWERRECOMP_ROOT}) -add_subdirectory(${POWERUTILS_ROOT}) +add_subdirectory(${XENONANALYSE_ROOT}) +add_subdirectory(${XENONRECOMP_ROOT}) +add_subdirectory(${XENONUTILS_ROOT}) # Only build sample and tests if this is the top level project if (${CMAKE_CURRENT_SOURCE_DIR} STREQUAL ${CMAKE_SOURCE_DIR}) - add_subdirectory(PowerSample) - add_subdirectory(PowerTests) + add_subdirectory(XenonSample) + add_subdirectory(XenonTests) endif() diff --git a/PowerAnalyse/CMakeLists.txt b/PowerAnalyse/CMakeLists.txt deleted file mode 100644 index f8f9f1c..0000000 --- a/PowerAnalyse/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -# cmake_minimum_required (VERSION 3.16) - -project("PowerAnalyse") - -add_executable(PowerAnalyse - "main.cpp" - "function.cpp") - -target_link_libraries(PowerAnalyse PRIVATE PowerUtils fmt::fmt) - -add_library(LibPowerAnalyse "function.cpp") -target_include_directories(LibPowerAnalyse PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) -target_link_libraries(LibPowerAnalyse PUBLIC PowerUtils) - diff --git a/PowerRecomp/CMakeLists.txt b/PowerRecomp/CMakeLists.txt deleted file mode 100644 index 7df1149..0000000 --- a/PowerRecomp/CMakeLists.txt +++ /dev/null @@ -1,24 +0,0 @@ -cmake_minimum_required (VERSION 3.8) - -project("PowerRecomp") - -add_executable(PowerRecomp - "main.cpp" - "recompiler.cpp" - "test_recompiler.cpp" - "recompiler_config.cpp") - -target_precompile_headers(PowerRecomp PUBLIC "pch.h") - -target_link_libraries(PowerRecomp PRIVATE - LibPowerAnalyse - PowerUtils - fmt::fmt - tomlplusplus::tomlplusplus - xxHash::xxhash) - -if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") - target_compile_options(PowerRecomp PRIVATE -Wno-switch -Wno-unused-variable -Wno-null-arithmetic) -endif() - -target_compile_definitions(PowerRecomp PRIVATE _CRT_SECURE_NO_WARNINGS) diff --git a/PowerUtils/CMakeLists.txt b/PowerUtils/CMakeLists.txt deleted file mode 100644 index 9757606..0000000 --- a/PowerUtils/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ -project("PowerUtils") -add_library(PowerUtils "disasm.h" "disasm.cpp" "file.h" "xex.cpp" "image.h" "image.cpp" "elf.h" "ppc_context.h" "symbol.h" "symbol_table.h" "section.h" "xdbf_wrapper.cpp" "byteswap.h") - -target_include_directories(PowerUtils PUBLIC .) -target_link_libraries(PowerUtils PUBLIC disasm) diff --git a/XenonAnalyse/CMakeLists.txt b/XenonAnalyse/CMakeLists.txt new file mode 100644 index 0000000..f13cdf4 --- /dev/null +++ b/XenonAnalyse/CMakeLists.txt @@ -0,0 +1,14 @@ +# cmake_minimum_required (VERSION 3.16) + +project("XenonAnalyse") + +add_executable(XenonAnalyse + "main.cpp" + "function.cpp") + +target_link_libraries(XenonAnalyse PRIVATE XenonUtils fmt::fmt) + +add_library(LibXenonAnalyse "function.cpp") +target_include_directories(LibXenonAnalyse PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) +target_link_libraries(LibXenonAnalyse PUBLIC XenonUtils) + diff --git a/PowerAnalyse/function.cpp b/XenonAnalyse/function.cpp similarity index 100% rename from PowerAnalyse/function.cpp rename to XenonAnalyse/function.cpp diff --git a/PowerAnalyse/function.h b/XenonAnalyse/function.h similarity index 100% rename from PowerAnalyse/function.h rename to XenonAnalyse/function.h diff --git a/PowerAnalyse/main.cpp b/XenonAnalyse/main.cpp similarity index 100% rename from PowerAnalyse/main.cpp rename to XenonAnalyse/main.cpp diff --git a/XenonRecomp/CMakeLists.txt b/XenonRecomp/CMakeLists.txt new file mode 100644 index 0000000..623a06f --- /dev/null +++ b/XenonRecomp/CMakeLists.txt @@ -0,0 +1,24 @@ +cmake_minimum_required (VERSION 3.8) + +project("XenonRecomp") + +add_executable(XenonRecomp + "main.cpp" + "recompiler.cpp" + "test_recompiler.cpp" + "recompiler_config.cpp") + +target_precompile_headers(XenonRecomp PUBLIC "pch.h") + +target_link_libraries(XenonRecomp PRIVATE + LibXenonAnalyse + XenonUtils + fmt::fmt + tomlplusplus::tomlplusplus + xxHash::xxhash) + +if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") + target_compile_options(XenonRecomp PRIVATE -Wno-switch -Wno-unused-variable -Wno-null-arithmetic) +endif() + +target_compile_definitions(XenonRecomp PRIVATE _CRT_SECURE_NO_WARNINGS) diff --git a/PowerRecomp/main.cpp b/XenonRecomp/main.cpp similarity index 82% rename from PowerRecomp/main.cpp rename to XenonRecomp/main.cpp index b0e5e2d..0e79245 100644 --- a/PowerRecomp/main.cpp +++ b/XenonRecomp/main.cpp @@ -4,8 +4,8 @@ int main(int argc, char* argv[]) { const char* path = - #ifdef CONFIG_FILE_PATH - CONFIG_FILE_PATH + #ifdef XENON_RECOMP_CONFIG_FILE_PATH + XENON_RECOMP_CONFIG_FILE_PATH #else argv[1] #endif @@ -24,8 +24,8 @@ int main(int argc, char* argv[]) } const char* headerFilePath = -#ifdef HEADER_FILE_PATH - HEADER_FILE_PATH +#ifdef XENON_RECOMP_HEADER_FILE_PATH + XENON_RECOMP_HEADER_FILE_PATH #else argv[2] #endif diff --git a/PowerRecomp/pch.h b/XenonRecomp/pch.h similarity index 100% rename from PowerRecomp/pch.h rename to XenonRecomp/pch.h diff --git a/PowerRecomp/recompiler.cpp b/XenonRecomp/recompiler.cpp similarity index 100% rename from PowerRecomp/recompiler.cpp rename to XenonRecomp/recompiler.cpp diff --git a/PowerRecomp/recompiler.h b/XenonRecomp/recompiler.h similarity index 100% rename from PowerRecomp/recompiler.h rename to XenonRecomp/recompiler.h diff --git a/PowerRecomp/recompiler_config.cpp b/XenonRecomp/recompiler_config.cpp similarity index 100% rename from PowerRecomp/recompiler_config.cpp rename to XenonRecomp/recompiler_config.cpp diff --git a/PowerRecomp/recompiler_config.h b/XenonRecomp/recompiler_config.h similarity index 100% rename from PowerRecomp/recompiler_config.h rename to XenonRecomp/recompiler_config.h diff --git a/PowerRecomp/test_recompiler.cpp b/XenonRecomp/test_recompiler.cpp similarity index 100% rename from PowerRecomp/test_recompiler.cpp rename to XenonRecomp/test_recompiler.cpp diff --git a/PowerRecomp/test_recompiler.h b/XenonRecomp/test_recompiler.h similarity index 100% rename from PowerRecomp/test_recompiler.h rename to XenonRecomp/test_recompiler.h diff --git a/PowerSample/.gitignore b/XenonSample/.gitignore similarity index 100% rename from PowerSample/.gitignore rename to XenonSample/.gitignore diff --git a/PowerSample/CMakeLists.txt b/XenonSample/CMakeLists.txt similarity index 57% rename from PowerSample/CMakeLists.txt rename to XenonSample/CMakeLists.txt index d207650..fd5fbbd 100644 --- a/PowerSample/CMakeLists.txt +++ b/XenonSample/CMakeLists.txt @@ -1,4 +1,4 @@ -project("PowerSample") +project("XenonSample") add_compile_options( "/D_HAS_EXCEPTIONS=0" @@ -9,6 +9,6 @@ add_compile_options( "-fno-strict-aliasing") file(GLOB RecompiledFiles *.cpp) -add_library(PowerSample ${RecompiledFiles}) +add_library(XenonSample ${RecompiledFiles}) -target_precompile_headers(PowerSample PUBLIC "ppc_recomp_shared.h") +target_precompile_headers(XenonSample PUBLIC "ppc_recomp_shared.h") diff --git a/PowerSample/main.cpp b/XenonSample/main.cpp similarity index 100% rename from PowerSample/main.cpp rename to XenonSample/main.cpp diff --git a/PowerTests/.gitignore b/XenonTests/.gitignore similarity index 100% rename from PowerTests/.gitignore rename to XenonTests/.gitignore diff --git a/PowerTests/CMakeLists.txt b/XenonTests/CMakeLists.txt similarity index 54% rename from PowerTests/CMakeLists.txt rename to XenonTests/CMakeLists.txt index 89a090f..a79fe93 100644 --- a/PowerTests/CMakeLists.txt +++ b/XenonTests/CMakeLists.txt @@ -1,4 +1,4 @@ -project("PowerTests") +project("XenonTests") add_compile_options( "-march=x86-64-v3" @@ -8,6 +8,6 @@ add_compile_options( file(GLOB TestFiles *.cpp) if(TestFiles) - add_executable(PowerTests ${TestFiles}) - target_link_libraries(PowerTests PUBLIC PowerUtils) + add_executable(XenonTests ${TestFiles}) + target_link_libraries(XenonTests PUBLIC XenonUtils) endif() diff --git a/XenonUtils/CMakeLists.txt b/XenonUtils/CMakeLists.txt new file mode 100644 index 0000000..8d4f3c7 --- /dev/null +++ b/XenonUtils/CMakeLists.txt @@ -0,0 +1,10 @@ +project("XenonUtils") + +add_library(XenonUtils + "disasm.cpp" + "xex.cpp" + "image.cpp" + "xdbf_wrapper.cpp") + +target_include_directories(XenonUtils PUBLIC .) +target_link_libraries(XenonUtils PUBLIC disasm) diff --git a/PowerUtils/byteswap.h b/XenonUtils/byteswap.h similarity index 100% rename from PowerUtils/byteswap.h rename to XenonUtils/byteswap.h diff --git a/PowerUtils/disasm.cpp b/XenonUtils/disasm.cpp similarity index 100% rename from PowerUtils/disasm.cpp rename to XenonUtils/disasm.cpp diff --git a/PowerUtils/disasm.h b/XenonUtils/disasm.h similarity index 100% rename from PowerUtils/disasm.h rename to XenonUtils/disasm.h diff --git a/PowerUtils/elf.h b/XenonUtils/elf.h similarity index 100% rename from PowerUtils/elf.h rename to XenonUtils/elf.h diff --git a/PowerUtils/file.h b/XenonUtils/file.h similarity index 100% rename from PowerUtils/file.h rename to XenonUtils/file.h diff --git a/PowerUtils/image.cpp b/XenonUtils/image.cpp similarity index 100% rename from PowerUtils/image.cpp rename to XenonUtils/image.cpp diff --git a/PowerUtils/image.h b/XenonUtils/image.h similarity index 100% rename from PowerUtils/image.h rename to XenonUtils/image.h diff --git a/PowerUtils/ppc_context.h b/XenonUtils/ppc_context.h similarity index 100% rename from PowerUtils/ppc_context.h rename to XenonUtils/ppc_context.h diff --git a/PowerUtils/section.h b/XenonUtils/section.h similarity index 100% rename from PowerUtils/section.h rename to XenonUtils/section.h diff --git a/PowerUtils/symbol.h b/XenonUtils/symbol.h similarity index 100% rename from PowerUtils/symbol.h rename to XenonUtils/symbol.h diff --git a/PowerUtils/symbol_table.h b/XenonUtils/symbol_table.h similarity index 100% rename from PowerUtils/symbol_table.h rename to XenonUtils/symbol_table.h diff --git a/PowerUtils/xbox.h b/XenonUtils/xbox.h similarity index 100% rename from PowerUtils/xbox.h rename to XenonUtils/xbox.h diff --git a/PowerUtils/xbox/xam_table.inc b/XenonUtils/xbox/xam_table.inc similarity index 100% rename from PowerUtils/xbox/xam_table.inc rename to XenonUtils/xbox/xam_table.inc diff --git a/PowerUtils/xbox/xboxkrnl_table.inc b/XenonUtils/xbox/xboxkrnl_table.inc similarity index 100% rename from PowerUtils/xbox/xboxkrnl_table.inc rename to XenonUtils/xbox/xboxkrnl_table.inc diff --git a/PowerUtils/xdbf.h b/XenonUtils/xdbf.h similarity index 100% rename from PowerUtils/xdbf.h rename to XenonUtils/xdbf.h diff --git a/PowerUtils/xdbf_wrapper.cpp b/XenonUtils/xdbf_wrapper.cpp similarity index 100% rename from PowerUtils/xdbf_wrapper.cpp rename to XenonUtils/xdbf_wrapper.cpp diff --git a/PowerUtils/xdbf_wrapper.h b/XenonUtils/xdbf_wrapper.h similarity index 100% rename from PowerUtils/xdbf_wrapper.h rename to XenonUtils/xdbf_wrapper.h diff --git a/PowerUtils/xex.cpp b/XenonUtils/xex.cpp similarity index 100% rename from PowerUtils/xex.cpp rename to XenonUtils/xex.cpp diff --git a/PowerUtils/xex.h b/XenonUtils/xex.h similarity index 100% rename from PowerUtils/xex.h rename to XenonUtils/xex.h diff --git a/tests/PowerAnalyse/add-cond.cpp b/tests/XenonAnalyse/add-cond.cpp similarity index 100% rename from tests/PowerAnalyse/add-cond.cpp rename to tests/XenonAnalyse/add-cond.cpp diff --git a/tests/PowerAnalyse/add-cond.elf b/tests/XenonAnalyse/add-cond.elf similarity index 100% rename from tests/PowerAnalyse/add-cond.elf rename to tests/XenonAnalyse/add-cond.elf diff --git a/tests/PowerAnalyse/add.cpp b/tests/XenonAnalyse/add.cpp similarity index 100% rename from tests/PowerAnalyse/add.cpp rename to tests/XenonAnalyse/add.cpp diff --git a/tests/PowerAnalyse/add.elf b/tests/XenonAnalyse/add.elf similarity index 100% rename from tests/PowerAnalyse/add.elf rename to tests/XenonAnalyse/add.elf diff --git a/tests/PowerAnalyse/cond-fall.cpp b/tests/XenonAnalyse/cond-fall.cpp similarity index 100% rename from tests/PowerAnalyse/cond-fall.cpp rename to tests/XenonAnalyse/cond-fall.cpp diff --git a/tests/PowerAnalyse/cond-fall.elf b/tests/XenonAnalyse/cond-fall.elf similarity index 100% rename from tests/PowerAnalyse/cond-fall.elf rename to tests/XenonAnalyse/cond-fall.elf diff --git a/tests/PowerAnalyse/cond.cpp b/tests/XenonAnalyse/cond.cpp similarity index 100% rename from tests/PowerAnalyse/cond.cpp rename to tests/XenonAnalyse/cond.cpp diff --git a/tests/PowerAnalyse/cond.elf b/tests/XenonAnalyse/cond.elf similarity index 100% rename from tests/PowerAnalyse/cond.elf rename to tests/XenonAnalyse/cond.elf diff --git a/tests/PowerAnalyse/loop.cpp b/tests/XenonAnalyse/loop.cpp similarity index 100% rename from tests/PowerAnalyse/loop.cpp rename to tests/XenonAnalyse/loop.cpp diff --git a/tests/PowerAnalyse/loop.elf b/tests/XenonAnalyse/loop.elf similarity index 100% rename from tests/PowerAnalyse/loop.elf rename to tests/XenonAnalyse/loop.elf diff --git a/tests/PowerAnalyse/private/.gitignore b/tests/XenonAnalyse/private/.gitignore similarity index 100% rename from tests/PowerAnalyse/private/.gitignore rename to tests/XenonAnalyse/private/.gitignore diff --git a/tests/compile-all.bat b/tests/compile-all.bat index a4d85a6..1a20468 100644 --- a/tests/compile-all.bat +++ b/tests/compile-all.bat @@ -1,5 +1,5 @@ @echo off -pushd PowerAnalyse +pushd XenonAnalyse for %%f in (*.cpp) do call ..\compile.bat %%f -popd \ No newline at end of file +popd