thug/Code/Sys/ngc/p_dma.h

14 lines
218 B
C
Raw Normal View History

2016-02-13 21:39:12 +00:00
#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_