Retro68/Samples/SystemExtension/SystemExtension.c
2019-08-18 13:21:00 +02:00

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();
}