/*
 * main.c
 */
#include "IO_CONFIG.h"
#include "PLL_INIT.h"
#include "UART.h"
#include "csl_nor.h"
#include "stdio.h"
#include "string.h"
#include "ExternInt.h"
#include "csl_intc.h"

void main(void)
{

	PLL_INIT();
	IO_CONFIG();
	UART_INIT();

	ExternInt_INIT();
	UART_SEND(0xf1);

	while(1);
}
