From 8bc1aee1103d0db7a96c277a9b74cbb68ded69e1 Mon Sep 17 00:00:00 2001 From: Lightos1 <124387232+Lightos1@users.noreply.github.com> Date: Sun, 24 May 2026 16:46:28 +0200 Subject: [PATCH] add back comment --- .../Atmosphere/stratosphere/loader/source/oc/pcv/pcv_asm.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_asm.hpp b/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_asm.hpp index c3681238..171b46f8 100644 --- a/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_asm.hpp +++ b/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_asm.hpp @@ -71,6 +71,11 @@ namespace ams::ldr::hoc::pcv { return ((ins1 & ImmMask) ^ (ins2 & ImmMask)) == 0; }; + /* Csel (Conditional Select) */ + /* + SF | Op | S | | RM | Cond | 0 | 0 | Rn | Rd + 31 | 30 | 29 | 28 27 26 25 24 23 | 20 19 18 17 16 | 15 14 13 12 | 11 | 10 | 9 8 7 6 5 | 4 3 2 1 0 + */ inline auto AsmCbzCompareOpcodeOnly = [](u32 ins1, u32 ins2) { return ((ins1 ^ ins2) >> 24) == 0; };