2014-07-01 23:26:57 +00:00
|
|
|
/*
|
|
|
|
TinyLoad - a simple region free (original) game launcher in 4k
|
|
|
|
|
|
|
|
# This code is licensed to you under the terms of the GNU GPL, version 2;
|
|
|
|
# see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This code comes from HBC's stub which was based on dhewg's geckoloader stub */
|
|
|
|
// Copyright 2008-2009 Andre Heider <dhewg@wiibrew.org>
|
|
|
|
// Copyright 2008-2009 Hector Martin <marcan@marcansoft.com>
|
|
|
|
|
|
|
|
#include "cache.h"
|
|
|
|
#include "dip.h"
|
2014-08-10 00:46:52 +00:00
|
|
|
#include "utils.h"
|
|
|
|
#include "global.h"
|
|
|
|
#include "apploader.h"
|
2014-07-01 23:26:57 +00:00
|
|
|
|
2014-08-28 22:43:15 +00:00
|
|
|
u32 _main()
|
2014-07-01 23:26:57 +00:00
|
|
|
{
|
2014-08-10 00:46:52 +00:00
|
|
|
RAMInit();
|
2014-08-28 22:43:15 +00:00
|
|
|
return Apploader_Run();
|
2014-07-01 23:26:57 +00:00
|
|
|
}
|