mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-22 05:36:23 +01:00
VFP: Implement {Get,Set}ExtendedRegister{32,64}
This commit is contained in:
parent
d31bbd6d14
commit
640ce48baa
15 changed files with 262 additions and 16 deletions
|
|
@ -63,11 +63,17 @@ public:
|
|||
/// View and modify registers.
|
||||
std::array<u32, 16>& Regs();
|
||||
std::array<u32, 16> Regs() const;
|
||||
std::array<u32, 64>& ExtRegs();
|
||||
std::array<u32, 64> ExtRegs() const;
|
||||
|
||||
/// View and modify CPSR.
|
||||
u32& Cpsr();
|
||||
u32 Cpsr() const;
|
||||
|
||||
/// View and modify FPSCR.
|
||||
u32 Fpscr() const;
|
||||
void SetFpscr(u32 value) const;
|
||||
|
||||
/**
|
||||
* Returns true if Jit::Run was called but hasn't returned yet.
|
||||
* i.e.: We're in a callback.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue