/**** BootLoader Test****/

#CASE    // Case sensitive compiler

#include "bltest.h"

void main()     // Main of loaded program
{
   int8 i=0;

   while(TRUE)
   {
      printf("# Boot Loader Test >>> %u\r\n",i++);
      delay_ms(100);
//      restart_wdt();
   }
}

#include "..\common\dbloader.h"