mirror of
https://github.com/encounter/aurora.git
synced 2026-03-30 10:57:39 -07:00
12 lines
217 B
C++
12 lines
217 B
C++
#pragma once
|
|
|
|
#include <dolphin/gx.h>
|
|
#include <cstdint>
|
|
|
|
namespace aurora::gx::fifo {
|
|
|
|
// Process a buffer of GX FIFO commands
|
|
void process(const u8* data, u32 size, bool bigEndian);
|
|
|
|
} // namespace aurora::gx::fifo
|