add more crap

This commit is contained in:
StapleButter
2016-05-16 17:48:40 +02:00
parent cfdfd4b231
commit 5b7ae6dab3
5 changed files with 83 additions and 3 deletions

18
NDS.h Normal file
View File

@ -0,0 +1,18 @@
#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