view src/main.c @ 2:8f23be2db808

Movec creep.h into the src folder. Added main loop
author Mike Pavone <pavone@retrodev.com>
date Sun, 12 Jan 2014 12:20:42 -0800
parents
children d73f53857e5f
line wrap: on
line source

#include <genesis.h>
#include "creep.h"

int main(void)
{
	for (;;)
	{
		VDP_waitVSync();
		VDP_updateSprites();
	}
	return 0;
}