SPR are not used
This commit is contained in:
@@ -93,7 +93,7 @@ private:
|
||||
}
|
||||
void MFSPR(u32 rt, u32 sa)
|
||||
{
|
||||
DisAsm("mfspr", spu_reg_name[rt], spu_reg_name[sa]); // Are SPR mapped on the GPR or are there 128 additional registers ? Yes, there are also 128 SPR making 256 registers total
|
||||
DisAsm("mfspr", spu_reg_name[rt], spu_reg_name[sa]);
|
||||
}
|
||||
void RDCH(u32 rt, u32 ra)
|
||||
{
|
||||
|
||||
@@ -271,25 +271,6 @@ union SPU_GPR_hdr
|
||||
}
|
||||
};
|
||||
|
||||
union SPU_SPR_hdr
|
||||
{
|
||||
u32 _u32[4];
|
||||
u128 _u128;
|
||||
s128 _i128;
|
||||
|
||||
SPU_SPR_hdr() {}
|
||||
|
||||
std::string ToString() const
|
||||
{
|
||||
return fmt::Format("%08x%08x%08x%08x", _u32[3], _u32[2], _u32[1], _u32[0]);
|
||||
}
|
||||
|
||||
void Reset()
|
||||
{
|
||||
memset(this, 0, sizeof(*this));
|
||||
}
|
||||
};
|
||||
|
||||
union SPU_SNRConfig_hdr
|
||||
{
|
||||
u64 value;
|
||||
|
||||
Reference in New Issue
Block a user