Skip to content

Commit

Permalink
add more crap
Browse files Browse the repository at this point in the history
  • Loading branch information
Arisotura committed May 16, 2016
1 parent cfdfd4b commit 5b7ae6d
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bin
obj
42 changes: 42 additions & 0 deletions NDS.cpp
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)
{
//
}

}
18 changes: 18 additions & 0 deletions NDS.h
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
9 changes: 6 additions & 3 deletions main.cpp
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;
}
15 changes: 15 additions & 0 deletions types.h
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

0 comments on commit 5b7ae6d

Please sign in to comment.