Luma3DS/source/main.c

21 lines
292 B
C
Raw Normal View History

2015-08-04 21:57:37 -04:00
/*
* main.c
* by Reisyukaku
2015-08-14 22:28:26 -04:00
* Copyright (c) 2015 All Rights Reserved
2015-08-04 21:57:37 -04:00
*
* Minimalist CFW for N3DS
*/
#include "fs.h"
#include "firm.h"
2015-08-05 05:54:00 -04:00
#include "draw.h"
2015-08-04 21:57:37 -04:00
int main(){
mountSD();
loadSplash();
loadFirm();
loadEmu();
2015-08-04 21:57:37 -04:00
patchFirm();
launchFirm();
return 0;
}