MTGos running on 3ds9. No VMM, No Tasks, Code running in kernel space
Find a file
2017-04-23 17:41:25 +00:00
cross added cross compiler build 2017-04-23 11:24:31 +00:00
docs add a basic build system skeleton 2017-04-23 12:55:10 +00:00
kernel added actual code to run 2017-04-23 17:41:25 +00:00
toolchains added actual code to run 2017-04-23 17:41:25 +00:00
.gitignore added actual code to run 2017-04-23 17:41:25 +00:00
CMakeLists.txt added actual code to run 2017-04-23 17:41:25 +00:00
config.py added actual code to run 2017-04-23 17:41:25 +00:00
readme added actual code to run 2017-04-23 17:41:25 +00:00

to build mtgos you need the cross compilers, whose makefile is included in cross/

Quick walkthrough of the steps needed for building:

1) ./config.py - this will ask you a couple questions needed for building and create a appropriate config.cmake and config.h
2) mkdir -pv build; cd build - this will enter a build directory, as an in-dir build is not supported
3) cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/<toolchain name here>.cmake ..
4) make
5) Kernel is in kernel/kernel