UserspaceEmulator: Align FPU-exception names with the manual

This commit is contained in:
Hendiadyoin1 2021-07-23 00:48:19 +02:00 committed by Linus Groh
parent 5d2a4bd18d
commit 74aba07b70
Notes: sideshowbarker 2024-07-18 01:25:53 +09:00

View File

@ -90,7 +90,7 @@ private:
void fpu_dump_env()
{
reportln("Exceptions: #I:{} #D:{} #O:{} #D:{} #U:{} #P:{} #SF:{} Summary:{}",
reportln("Exceptions: #I:{} #D:{} #Z:{} #O:{} #U:{} #P:{} #SF:{} Summary:{}",
m_fpu_error_invalid,
m_fpu_error_denorm,
m_fpu_error_zero_div,
@ -99,7 +99,7 @@ private:
m_fpu_error_precision,
m_fpu_error_stackfault,
m_fpu_error_summary);
reportln("Masks: #I:{} #D:{} #O:{} #D:{} #U:{} #P:{}",
reportln("Masks: #I:{} #D:{} #Z:{} #O:{} #U:{} #P:{}",
m_fpu_mask_invalid,
m_fpu_mask_denorm,
m_fpu_mask_zero_div,