mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-06 23:19:58 +01:00
20 lines
374 B
C++
20 lines
374 B
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2018 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "common/common_types.h"
|
|
|
|
namespace Dynarmic::FP {
|
|
|
|
class FPCR;
|
|
class FPSR;
|
|
enum class RoundingMode;
|
|
|
|
template<typename FPT>
|
|
u64 FPRoundInt(FPT op, FPCR fpcr, RoundingMode rounding, bool exact, FPSR& fpsr);
|
|
|
|
} // namespace Dynarmic::FP
|