Skip to content

Minishlink/MLlib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7d94453 · Jan 5, 2018

History

80 Commits
Jan 19, 2011
Jan 19, 2011
Jul 5, 2010
Jan 5, 2018
Jun 14, 2009
Oct 26, 2009
Mar 14, 2015
Jul 4, 2010
Nov 7, 2009
Jan 19, 2011

Repository files navigation

MLlib

The MLlib (for Minishlink's Library) is a simple library to develop on Nintendo Wii. Technically, it's a wrapper of libogc and others librairies. Coding with this lib on Wii is way easier now ! :-)

More info on Wiibrew.

Template

Here's the simple code to have the program running on Wii :

#include <MLlib.h>

int main(int argc, char **argv) 
{
	ML_Init();
	ML_SplashScreen(); // You can delete this instruction, but please let it if you can :)
		
	while(1)
	{
		if(Wiimote[0].Newpress.Home) ML_Exit();
		
		ML_Refresh();
	}
	
	return 0;
}

Authors :

  • Minishlink

Special Thanks :

This project was moved from https://code.google.com/p/mllib/