mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 13:27:41 -07:00
26 lines
289 B
C++
26 lines
289 B
C++
|
|
#ifndef NDS_H
|
|
#define NDS_H
|
|
|
|
#include "types.h"
|
|
|
|
namespace NDS
|
|
{
|
|
|
|
void Init();
|
|
void Reset();
|
|
|
|
void RunFrame();
|
|
|
|
void Halt();
|
|
|
|
u32 ARM9Read32(u32 addr);
|
|
u32 ARM7Read32(u32 addr);
|
|
|
|
template<typename T> T Read(u32 addr);
|
|
template<typename T> void Write(u32 addr, T val);
|
|
|
|
}
|
|
|
|
#endif // NDS_H
|