mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 21:37:42 -07:00
19 lines
204 B
C++
19 lines
204 B
C++
|
|
#ifndef NDS_H
|
|
#define NDS_H
|
|
|
|
#include "types.h"
|
|
|
|
namespace NDS
|
|
{
|
|
|
|
void Init();
|
|
void Reset();
|
|
|
|
template<typename T> T Read(u32 addr);
|
|
template<typename T> void Write(u32 addr, T val);
|
|
|
|
}
|
|
|
|
#endif // NDS_H
|