1 // Copyright 2018 Dolphin Emulator Project
2 // Licensed under GPLv2+
3 // Refer to the license.txt file included.
4 
5 #pragma once
6 
7 #include "Core/DSP/DSPCommon.h"
8 
9 namespace DSP::Interpreter
10 {
11 using InterpreterFunction = void (*)(UDSPInstruction);
12 
13 InterpreterFunction GetOp(UDSPInstruction inst);
14 InterpreterFunction GetExtOp(UDSPInstruction inst);
15 void InitInstructionTables();
16 }  // namespace DSP::Interpreter
17