1 /* This file is part of the dynarmic project.
2  * Copyright (c) 2019 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 bool FPCompareEQ(FPT lhs, FPT rhs, FPCR fpcr, FPSR& fpsr);
15 
16 } // namespace Dynarmic::FP
17