Luma3DS/source/main.c

19 lines
267 B
C
Raw Permalink Normal View History

2015-08-04 21:57:37 -04:00
/*
* main.c
* by Reisyukaku / Aurora Wright
* Copyright (c) 2016 All Rights Reserved
2015-08-04 21:57:37 -04:00
*
* Minimalist CFW for (N)3DS
2015-08-04 21:57:37 -04:00
*/
#include "fs.h"
#include "firm.h"
void main(void)
{
2015-08-04 21:57:37 -04:00
mountSD();
setupCFW();
loadFirm();
patchFirm();
2015-08-04 21:57:37 -04:00
launchFirm();
}