mirror of
https://github.com/PCSX2/pcsx2.git
synced 2026-01-31 01:15:24 +01:00
35 lines
736 B
C++
35 lines
736 B
C++
// SPDX-FileCopyrightText: 2002-2026 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#pragma once
|
|
|
|
/*********************************************************
|
|
* Shift arithmetic with constant shift *
|
|
* Format: OP rd, rt, sa *
|
|
*********************************************************/
|
|
|
|
namespace R5900 {
|
|
namespace Dynarec {
|
|
namespace OpcodeImpl {
|
|
|
|
void recSLL();
|
|
void recSRL();
|
|
void recSRA();
|
|
void recDSLL();
|
|
void recDSRL();
|
|
void recDSRA();
|
|
void recDSLL32();
|
|
void recDSRL32();
|
|
void recDSRA32();
|
|
|
|
void recSLLV();
|
|
void recSRLV();
|
|
void recSRAV();
|
|
void recDSLLV();
|
|
void recDSRLV();
|
|
void recDSRAV();
|
|
|
|
} // namespace OpcodeImpl
|
|
} // namespace Dynarec
|
|
} // namespace R5900
|