mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-03-06 21:00:31 +01:00
18 lines
204 B
C++
18 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
|