forked from melonDS-emu/melonDS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
83 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
bin | ||
obj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) | ||
{ | ||
// | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
#include <iostream> | ||
#include <stdio.h> | ||
#include "NDS.h" | ||
|
||
using namespace std; | ||
|
||
int main() | ||
{ | ||
cout << "Hello world!" << endl; | ||
printf("melonDS version uh... 0.1??\n"); | ||
|
||
NDS::Init(); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// types, common crap | ||
|
||
#ifndef TYPES_H | ||
#define TYPES_H | ||
|
||
typedef unsigned char u8; | ||
typedef unsigned short u16; | ||
typedef unsigned int u32; | ||
typedef unsigned long int u64; | ||
typedef signed char s8; | ||
typedef signed short s16; | ||
typedef signed int s32; | ||
typedef signed long int s64; | ||
|
||
#endif // TYPES_H |