mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-26 09:14:54 +01:00
frontend: Introduce FPSCR register helper class
Encapsulates all of the FPSCR state.
This commit is contained in:
parent
b5a86889cd
commit
eba3a06d80
5 changed files with 236 additions and 59 deletions
|
|
@ -21,7 +21,7 @@ std::string DumpBlock(const IR::Block& block) {
|
|||
loc.PC(),
|
||||
loc.TFlag() ? "T" : "!T",
|
||||
loc.EFlag() ? "E" : "!E",
|
||||
loc.FPSCR());
|
||||
loc.FPSCR().Value());
|
||||
};
|
||||
|
||||
ret += Common::StringFromFormat("Block: location=%s\n", loc_to_string(block.location).c_str());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue