#include <target.h>

#define P016	0x10000

int
main(void)
{
	Intern_iodir |= P016;	// P0.16 output

	/*
	 * Toggle P0.16 as fast as possible!
	 */
	while (1) Intern_ioset = P016, Intern_ioclr = P016;
}

