1 /* This file is part of the dynarmic project.
2  * Copyright (c) 2018 MerryMage
3  * SPDX-License-Identifier: 0BSD
4  */
5 
6 #pragma once
7 
8 namespace Dynarmic::FP {
9 
10 class FPCR;
11 class FPSR;
12 
13 template<typename FPT>
14 FPT FPRecipEstimate(FPT op, FPCR fpcr, FPSR& fpsr);
15 
16 } // namespace Dynarmic::FP
17