mirror of
https://github.com/dinamicoplus/2007-NDSProjects.git
synced 2025-06-18 17:05:43 -04:00
26 lines
352 B
Plaintext
Executable File
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()
|