23fd26630f
Thanks to a very skilled reverser for the reboot patch!
21 lines
320 B
C
21 lines
320 B
C
/*
|
|
* main.c
|
|
* by Reisyukaku
|
|
* Copyright (c) 2015 All Rights Reserved
|
|
*
|
|
* Minimalist CFW for N3DS
|
|
*/
|
|
|
|
#include "fs.h"
|
|
#include "firm.h"
|
|
#include "draw.h"
|
|
|
|
u8 main(){
|
|
mountSD();
|
|
loadSplash();
|
|
setupCFW();
|
|
if (loadFirm()) return 1;
|
|
if (patchFirm()) return 1;
|
|
launchFirm();
|
|
return 0;
|
|
} |