view src/main.c @ 3:b4d360d2e66c

Update library paths in makefile
author Mike Pavone <pavone@retrodev.com>
date Sun, 12 Jan 2014 12:24:21 -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;
}