diff options
author | Liam <byteslice@airmail.cc> | 2022-06-01 20:31:24 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-06-01 20:31:24 -0400 |
commit | b71130e6f1b8eec2ee7b38214f5fa15cc2a5be96 (patch) | |
tree | 19bcff9f2645e33bb36abb5ced3f4952fd3473d5 /src/core/debugger/gdbstub_arch.h | |
parent | af418eb6662bcb859e7922105d9ad6ba50dec3ac (diff) |
gdbstub: fix target descriptions
Diffstat (limited to 'src/core/debugger/gdbstub_arch.h')
-rw-r--r-- | src/core/debugger/gdbstub_arch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/debugger/gdbstub_arch.h b/src/core/debugger/gdbstub_arch.h index e943848e5e..4d039a9f7d 100644 --- a/src/core/debugger/gdbstub_arch.h +++ b/src/core/debugger/gdbstub_arch.h @@ -40,8 +40,8 @@ private: static constexpr u32 PC_REGISTER = 32; static constexpr u32 PSTATE_REGISTER = 33; static constexpr u32 Q0_REGISTER = 34; - static constexpr u32 FPCR_REGISTER = 66; - static constexpr u32 FPSR_REGISTER = 67; + static constexpr u32 FPSR_REGISTER = 66; + static constexpr u32 FPCR_REGISTER = 67; }; class GDBStubA32 final : public GDBStubArch { |