mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-02 12:44:34 +01:00
jit_state: Hide cpsr implementation
This commit is contained in:
parent
a4e85ad565
commit
6adc554b53
8 changed files with 87 additions and 37 deletions
|
|
@ -63,12 +63,12 @@ public:
|
|||
const std::array<std::uint32_t, 64>& ExtRegs() const;
|
||||
|
||||
/// View and modify CPSR.
|
||||
std::uint32_t& Cpsr();
|
||||
std::uint32_t Cpsr() const;
|
||||
void SetCpsr(std::uint32_t value);
|
||||
|
||||
/// View and modify FPSCR.
|
||||
std::uint32_t Fpscr() const;
|
||||
void SetFpscr(std::uint32_t value) const;
|
||||
void SetFpscr(std::uint32_t value);
|
||||
|
||||
/**
|
||||
* Returns true if Jit::Run was called but hasn't returned yet.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue