mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-24 02:08:40 +00:00
VFP: Implement {Get,Set}ExtendedRegister{32,64}
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user