From 069e217a6084da15a6607d97495863857b1efcf4 Mon Sep 17 00:00:00 2001 From: souldbminersmwc Date: Tue, 30 Dec 2025 17:45:07 -0500 Subject: [PATCH] ams-patches: fix patching scripts --- ams_patch.bat | 2 ++ build.bat | 10 ++++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ams_patch.bat b/ams_patch.bat index a8c3a202..3114a294 100644 --- a/ams_patch.bat +++ b/ams_patch.bat @@ -3,7 +3,9 @@ set ROOT=build set PATCHES=Atmosphere-Patches copy "%PATCHES%\secmon_memory_layout.hpp" "%ROOT%\libraries\libexosphere/include/exosphere/secmon/" /Y copy "%PATCHES%\secmon_emc_access_table_data.inc" "%ROOT%\exosphere/program/source/smc/" /Y +copy "%PATCHES%\secmon_soctherm_access_table_data.inc" "%ROOT%\exosphere/program/source/smc/" /Y copy "%PATCHES%\secmon_define_emc_access_table.inc" "%ROOT%\exosphere/program/source/smc/" /Y +copy "%PATCHES%\secmon_define_soctherm_access_table.inc" "%ROOT%\exosphere/program/source/smc/" /Y copy "%PATCHES%\secmon_smc_register_access.cpp" "%ROOT%\exosphere/program/source/smc/" /Y echo Patched! diff --git a/build.bat b/build.bat index aa909ca7..9bf56f4d 100644 --- a/build.bat +++ b/build.bat @@ -35,10 +35,12 @@ cd ..\.. set ROOT=build set PATCHES=Atmosphere-Patches -copy /Y "%PATCHES%\secmon_memory_layout.hpp" "%ROOT%\libraries\libexosphere\include\exosphere\secmon\" -copy /Y "%PATCHES%\secmon_emc_access_table_data.inc" "%ROOT%\exosphere\program\source\smc\" -copy /Y "%PATCHES%\secmon_define_emc_access_table.inc" "%ROOT%\exosphere\program\source\smc\" -copy /Y "%PATCHES%\secmon_smc_register_access.cpp" "%ROOT%\exosphere\program\source\smc\" +copy "%PATCHES%\secmon_memory_layout.hpp" "%ROOT%\libraries\libexosphere/include/exosphere/secmon/" /Y +copy "%PATCHES%\secmon_emc_access_table_data.inc" "%ROOT%\exosphere/program/source/smc/" /Y +copy "%PATCHES%\secmon_soctherm_access_table_data.inc" "%ROOT%\exosphere/program/source/smc/" /Y +copy "%PATCHES%\secmon_define_emc_access_table.inc" "%ROOT%\exosphere/program/source/smc/" /Y +copy "%PATCHES%\secmon_define_soctherm_access_table.inc" "%ROOT%\exosphere/program/source/smc/" /Y +copy "%PATCHES%\secmon_smc_register_access.cpp" "%ROOT%\exosphere/program/source/smc/" /Y cd build\exosphere make -j %NUMBER_OF_PROCESSORS%