mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 14:19:55 -06:00
add more crap
This commit is contained in:
42
NDS.cpp
Normal file
42
NDS.cpp
Normal file
@ -0,0 +1,42 @@
|
||||
#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)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user