diff --git a/README.md b/README.md index d8b8c3b7..bec47682 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ I'd appreciate if someone is willing to contribute. But if you are releasing som ## Installation -1. Copy all the files in `SdOut` to the root of SD card. `system_settings.ini` should be edited manually. +1. Download latest release and copy all the files in `SdOut` to the root of SD card. `system_settings.ini` should be edited manually. 2. Grab `x.x.x_loader_xxxx.x.kip` for your Atmosphere version and desired RAM frequency, rename it to `loader.kip` and place it in `/atmosphere/kips/`. diff --git a/SdOut/atmosphere/1.2.5_loader_1862.4.kip b/SdOut/atmosphere/1.2.5_loader_1862.4.kip deleted file mode 100644 index 65695fb5..00000000 Binary files a/SdOut/atmosphere/1.2.5_loader_1862.4.kip and /dev/null differ diff --git a/SdOut/atmosphere/1.2.5_loader_1996.8.kip b/SdOut/atmosphere/1.2.5_loader_1996.8.kip deleted file mode 100644 index e646bfa6..00000000 Binary files a/SdOut/atmosphere/1.2.5_loader_1996.8.kip and /dev/null differ diff --git a/SdOut/atmosphere/1.2.5_loader_2131.2.kip b/SdOut/atmosphere/1.2.5_loader_2131.2.kip deleted file mode 100644 index 2f91b846..00000000 Binary files a/SdOut/atmosphere/1.2.5_loader_2131.2.kip and /dev/null differ diff --git a/SdOut/atmosphere/contents/00FF0000636C6BFF/exefs.nsp b/SdOut/atmosphere/contents/00FF0000636C6BFF/exefs.nsp deleted file mode 100644 index 9f03d495..00000000 Binary files a/SdOut/atmosphere/contents/00FF0000636C6BFF/exefs.nsp and /dev/null differ diff --git a/SdOut/atmosphere/contents/00FF0000636C6BFF/flags/boot2.flag b/SdOut/atmosphere/contents/00FF0000636C6BFF/flags/boot2.flag deleted file mode 100644 index e69de29b..00000000 diff --git a/SdOut/switch/.overlays/ReverseNX-RT-ovl.ovl b/SdOut/switch/.overlays/ReverseNX-RT-ovl.ovl deleted file mode 100644 index 8a092aa3..00000000 Binary files a/SdOut/switch/.overlays/ReverseNX-RT-ovl.ovl and /dev/null differ diff --git a/SdOut/switch/.overlays/sys-clk-overlay.ovl b/SdOut/switch/.overlays/sys-clk-overlay.ovl deleted file mode 100644 index 8d35c3b1..00000000 Binary files a/SdOut/switch/.overlays/sys-clk-overlay.ovl and /dev/null differ diff --git a/SdOut/switch/MemTesterNX.nro b/SdOut/switch/MemTesterNX.nro deleted file mode 100644 index c6b55871..00000000 Binary files a/SdOut/switch/MemTesterNX.nro and /dev/null differ diff --git a/SdOut/switch/TinyMemBenchNX.nro b/SdOut/switch/TinyMemBenchNX.nro deleted file mode 100644 index df713977..00000000 Binary files a/SdOut/switch/TinyMemBenchNX.nro and /dev/null differ diff --git a/SdOut/switch/sys-clk-manager.nro b/SdOut/switch/sys-clk-manager.nro deleted file mode 100644 index 0ded5df5..00000000 Binary files a/SdOut/switch/sys-clk-manager.nro and /dev/null differ diff --git a/Source/TinyMemBenchNX/source/main.c b/Source/TinyMemBenchNX/source/main.c index 77095379..3ba2ed23 100644 --- a/Source/TinyMemBenchNX/source/main.c +++ b/Source/TinyMemBenchNX/source/main.c @@ -552,14 +552,14 @@ void memset_wrapper(int64_t *dst, int64_t *src, int size) static bench_info aarch64_neon[] = { - { "NEON LDP", 0, aligned_block_read_ldp_q_aarch64 }, - { "NEON LDP/STP copy", 0, aligned_block_copy_ldpstp_q_aarch64 }, + { "NEON LDP (READ)", 0, aligned_block_read_ldp_q_aarch64 }, + { "NEON LDP/STP copy (COPY)", 0, aligned_block_copy_ldpstp_q_aarch64 }, { "NEON LDP/STP copy pldl2strm (32B step)", 0, aligned_block_copy_ldpstp_q_pf32_l2strm_aarch64 }, { "NEON LDP/STP copy pldl2strm (64B step)", 0, aligned_block_copy_ldpstp_q_pf64_l2strm_aarch64 }, { "NEON LDP/STP copy pldl1keep (32B step)", 0, aligned_block_copy_ldpstp_q_pf32_l1keep_aarch64 }, { "NEON LDP/STP copy pldl1keep (64B step)", 0, aligned_block_copy_ldpstp_q_pf64_l1keep_aarch64 }, { "NEON LD1/ST1 copy", 0, aligned_block_copy_ld1st1_aarch64 }, - { "NEON STP fill", 0, aligned_block_fill_stp_q_aarch64 }, + { "NEON STP fill (WRITE)", 0, aligned_block_fill_stp_q_aarch64 }, { "NEON STNP fill", 0, aligned_block_fill_stnp_q_aarch64 }, { "ARM LDP", 0, aligned_block_read_ldp_x_aarch64 }, { "ARM LDP/STP copy", 0, aligned_block_copy_ldpstp_x_aarch64 }, @@ -887,6 +887,7 @@ void printClock() clkrstOpenSession(&clkrstSession, PcvModuleId_EMC, 3); clkrstGetClockRate(&clkrstSession, &mem_hz); clkrstCloseSession(&clkrstSession); + clkrstExit(); printf("== CPU: %u.%u MHz ==\n== MEM: %u.%u MHz ==\n", cpu_hz/1000000, cpu_hz/100000 - cpu_hz/1000000*10,