1
0
Fork 0
mirror of https://github.com/melonDS-emu/melonDS.git synced 2025-03-06 21:00:31 +01:00
melonDS/NDS.cpp
2016-05-16 17:48:40 +02:00

42 lines
400 B
C++

#include <stdio.h>
#include "NDS.h"
namespace NDS
{
//
void Init()
{
Reset();
}
void Reset()
{
FILE* f;
f = fopen("bios9.bin", "rb");
if (!f)
printf("ARM9 BIOS not found\n");
else
{
// load BIOS here
fclose(f);
}
}
template<typename T> T Read(u32 addr)
{
return (T)0;
}
template<typename T> void Write(u32 addr, T val)
{
//
}
}