mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-15 22:08:47 +00:00
17 lines
278 B
C
17 lines
278 B
C
#include <OSUtils.h>
|
|
#include "ShowInitIcon.h"
|
|
#include "Retro68Runtime.h"
|
|
|
|
void _start()
|
|
{
|
|
RETRO68_RELOCATE();
|
|
Retro68CallConstructors();
|
|
|
|
ShowInitIcon(130, false);
|
|
Delay(20, NULL);
|
|
ShowInitIcon(128, true);
|
|
Delay(40, NULL);
|
|
|
|
Retro68FreeGlobals();
|
|
}
|