2007-NDSProjects/3D/source/.svn/text-base/main.c.svn-base
2015-12-21 12:08:35 +01:00

26 lines
352 B
Plaintext
Executable File

// Includes
#include <PA9.h> // Include for PA_Lib
// Function: main()
int main(int argc, char ** argv)
{
PA_Init(); // Initializes PA_Lib
PA_InitVBL(); // Initializes a standard VBL
// Infinite loop to keep the program running
while (1)
{
PA_WaitForVBL();
}
return 0;
} // End of main()