From 6adc56df4e56e170dd4cba7a42dab8edda299726 Mon Sep 17 00:00:00 2001 From: wheremyfoodat Date: Wed, 28 Sep 2022 19:05:03 +0300 Subject: [PATCH] [CP15] Fix comment --- include/dynarmic_cp15.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dynarmic_cp15.hpp b/include/dynarmic_cp15.hpp index f98f82b8..1345aad4 100644 --- a/include/dynarmic_cp15.hpp +++ b/include/dynarmic_cp15.hpp @@ -39,7 +39,7 @@ class CP15 final : public Dynarmic::A32::Coprocessor { CallbackOrAccessOneWord CompileGetOneWord(bool two, unsigned opc1, CoprocReg CRn, CoprocReg CRm, unsigned opc2) override { - // Some sort of pointer to TLS, accessed via mrc p15, 0, rd, c13, c0, 3 + // Stores a pointer to thread-local storage, accessed via mrc p15, 0, rd, c13, c0, 3 if (!two && CRn == CoprocReg::C13 && opc1 == 0 && CRm == CoprocReg::C0 && opc2 == 3) { return &threadStoragePointer; }