This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Luma3DS-3GX/source/main.c
2016-03-06 16:31:16 +01:00

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 0;
if(!patchFirm()) return 0;
launchFirm();
return 1;
}