mirror of
https://github.com/project-slippi/Nintendont.git
synced 2025-10-06 00:22:40 +02:00
-small asm and multidol loader changes, nothing really worth pointing out -added a patch for PADControlAllMotors, this should get rumble working for most games which didnt have rumble yet -changed up the patching system to have critical patches always loaded up at the same place, this should fix bootup of the 007 games -heavly modified the video patching system to now work without complete video modes, this should allow games to be patched which were not changeable before -added a new FIFO and a new __CARDStat patch, didnt have any effect though on pokemon xd, the problem of this game is still unknown -added a timer fix for the japanese majoras mask version
23 lines
577 B
C
23 lines
577 B
C
/*
|
|
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"
|
|
#include "utils.h"
|
|
#include "global.h"
|
|
#include "apploader.h"
|
|
|
|
u32 _main()
|
|
{
|
|
RAMInit();
|
|
return Apploader_Run();
|
|
}
|