#include "mygba.h"

void AgbMain(void)
{
	// Initialize HAMlib
	ham_Init();

	// Initialize the text display system on the
	// background of your choice
	ham_InitText(0);

	// Draw some text
	ham_DrawText(0,0,"Hello, World!");

	while(1)
	{
		// Infinite loop to keep the program running
	}

	return; 
}