view src/main.c @ 5:11fbaecc6c5e

copied the windows makefile straight from SGDK.
author William Morgan <bill@mrgn.org>
date Sun, 12 Jan 2014 13:43:51 -0800
parents 8f23be2db808
children d73f53857e5f
line wrap: on
line source

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

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