diff options
-rw-r--r-- | README.md | 14 | ||||
-rw-r--r-- | main.cpp | 9 | ||||
-rw-r--r-- | melonDS.cbp | 42 | ||||
-rw-r--r-- | melonDS.layout | 5 |
4 files changed, 70 insertions, 0 deletions
@@ -1,2 +1,16 @@ # melonDS DS emulator, sorta + + +the goal is to do things right and fast, akin to blargSNES (but hopefully better) + +but also to have fun coding this shit + + +LOVE MELONS + + +NO ASKING ROMZ!! ILLEGAL + + +license will eventually be GPL or some crap. don't steal the code and make money off of it or claim it as your own or be an asshole.
\ No newline at end of file diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..b4392ec --- /dev/null +++ b/main.cpp @@ -0,0 +1,9 @@ +#include <iostream> + +using namespace std; + +int main() +{ + cout << "Hello world!" << endl; + return 0; +} diff --git a/melonDS.cbp b/melonDS.cbp new file mode 100644 index 0000000..d8465a9 --- /dev/null +++ b/melonDS.cbp @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_project_file> + <FileVersion major="1" minor="6" /> + <Project> + <Option title="melonDS" /> + <Option pch_mode="2" /> + <Option compiler="gcc" /> + <Build> + <Target title="Debug"> + <Option output="bin/Debug/melonDS" prefix_auto="1" extension_auto="1" /> + <Option object_output="obj/Debug/" /> + <Option type="1" /> + <Option compiler="gcc" /> + <Compiler> + <Add option="-g" /> + </Compiler> + </Target> + <Target title="Release"> + <Option output="bin/Release/melonDS" prefix_auto="1" extension_auto="1" /> + <Option object_output="obj/Release/" /> + <Option type="1" /> + <Option compiler="gcc" /> + <Compiler> + <Add option="-O2" /> + </Compiler> + <Linker> + <Add option="-s" /> + </Linker> + </Target> + </Build> + <Compiler> + <Add option="-Wall" /> + <Add option="-fexceptions" /> + </Compiler> + <Unit filename="main.cpp" /> + <Extensions> + <code_completion /> + <envvars /> + <debugger /> + </Extensions> + </Project> +</CodeBlocks_project_file> diff --git a/melonDS.layout b/melonDS.layout new file mode 100644 index 0000000..593c06e --- /dev/null +++ b/melonDS.layout @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_layout_file> + <FileVersion major="1" minor="0" /> + <ActiveTarget name="Debug" /> +</CodeBlocks_layout_file> |