mirror of
https://github.com/thug1src/thug.git
synced 2024-12-02 12:56:45 +00:00
14 lines
218 B
C++
14 lines
218 B
C++
#ifndef _DMA_H_
|
|
#define _DMA_H_
|
|
|
|
#include <dolphin.h>
|
|
|
|
namespace NsDMA
|
|
{
|
|
void toARAM ( u32 aram, void * p_mram, int size );
|
|
void toMRAM ( void * p_mram, u32 aram, int size );
|
|
};
|
|
|
|
#endif // _DMA_H_
|
|
|