mirror of https://github.com/PCSX2/pcsx2.git
28 lines
631 B
C++
28 lines
631 B
C++
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#pragma once
|
|
|
|
/*********************************************************
|
|
* Arithmetic with immediate operand *
|
|
* Format: OP rt, rs, immediate *
|
|
*********************************************************/
|
|
namespace R5900 {
|
|
namespace Dynarec {
|
|
namespace OpcodeImpl {
|
|
|
|
void recADDI();
|
|
void recADDIU();
|
|
void recDADDI();
|
|
void recDADDIU();
|
|
void recANDI();
|
|
void recORI();
|
|
void recXORI();
|
|
|
|
void recSLTI();
|
|
void recSLTIU();
|
|
|
|
} // namespace OpcodeImpl
|
|
} // namespace Dynarec
|
|
} // namespace R5900
|