13fd33a61d
Thanks @Fix94 for the tip
21 lines
321 B
C
21 lines
321 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"
|
|
|
|
u32 main(){
|
|
mountSD();
|
|
loadSplash();
|
|
setupCFW();
|
|
if(!loadFirm()) return 0;
|
|
if(!patchFirm()) return 0;
|
|
launchFirm();
|
|
return 1;
|
|
} |