17 lines
293 B
C++
Executable File
17 lines
293 B
C++
Executable File
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2019 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Dynarmic::FP {
|
|
|
|
class FPCR;
|
|
class FPSR;
|
|
|
|
template <typename FPT>
|
|
bool FPCompareEQ(FPT lhs, FPT rhs, FPCR fpcr, FPSR& fpsr);
|
|
|
|
} // namespace Dynarmic::FP
|