mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
OpcodeDecoder: Add namespace
This commit is contained in:
@ -38,8 +38,13 @@
|
||||
#define GX_DRAW_LINE_STRIP 0x6 // 0xB0
|
||||
#define GX_DRAW_POINTS 0x7 // 0xB8
|
||||
|
||||
void OpcodeDecoder_Init();
|
||||
void OpcodeDecoder_Shutdown();
|
||||
namespace OpcodeDecoder
|
||||
{
|
||||
|
||||
void Init();
|
||||
void Shutdown();
|
||||
|
||||
template <bool is_preprocess = false>
|
||||
u8* OpcodeDecoder_Run(DataReader src, u32* cycles, bool in_display_list);
|
||||
u8* Run(DataReader src, u32* cycles, bool in_display_list);
|
||||
|
||||
} // namespace OpcodeDecoder
|
||||
|
Reference in New Issue
Block a user