mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
OpcodeDecoder: Add namespace
This commit is contained in:
parent
aa39b0dab1
commit
e187c55bdd
6 changed files with 33 additions and 24 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue