mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 08:51:28 +12:00
ppu interpreter: Improve FPCC field handling
This commit is contained in:
parent
aa44ef1f44
commit
e21504d52d
4 changed files with 90 additions and 55 deletions
|
@ -443,7 +443,7 @@ std::string ppu_thread::dump() const
|
|||
for (uint i = 0; i < 32; ++i) fmt::append(ret, "FPR[%d] = %.6G\n", i, fpr[i]);
|
||||
for (uint i = 0; i < 32; ++i) fmt::append(ret, "VR[%d] = %s [x: %g y: %g z: %g w: %g]\n", i, vr[i], vr[i]._f[3], vr[i]._f[2], vr[i]._f[1], vr[i]._f[0]);
|
||||
|
||||
fmt::append(ret, "CR = 0x%08x\n", cr_pack());
|
||||
fmt::append(ret, "CR = 0x%08x\n", cr.pack());
|
||||
fmt::append(ret, "LR = 0x%llx\n", lr);
|
||||
fmt::append(ret, "CTR = 0x%llx\n", ctr);
|
||||
fmt::append(ret, "VRSAVE = 0x%08x\n", vrsave);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue