mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 05:17:52 +00:00
thread: FPCR.FZ is likely not 1
This commit is contained in:
parent
fbf13d3f48
commit
2bfac7b61d
1 changed files with 1 additions and 2 deletions
|
@ -148,8 +148,7 @@ static void ResetThreadContext64(Core::ARM_Interface::ThreadContext64& context,
|
|||
context.pc = entry_point;
|
||||
context.sp = stack_top;
|
||||
// TODO(merry): Perform a hardware test to determine the below value.
|
||||
// AHP = 0, DN = 1, FTZ = 1, RMode = Round towards zero
|
||||
context.fpcr = 0x03C00000;
|
||||
context.fpcr = 0;
|
||||
}
|
||||
|
||||
ResultVal<std::shared_ptr<Thread>> Thread::Create(KernelCore& kernel, std::string name,
|
||||
|
|
Loading…
Reference in a new issue