flipflop
A lightweight serial bootloader for PIC16F1 devices.
/**
* Configuration for booting user application.
*/
#ifndef _BOOT_CONFIG_H_
#define _BOOT_CONFIG_H_
#define PROG_RST_VECT PROG_OFFSET
#define PROG_INT_VECT (PROG_OFFSET + 0x4)
#endif
// EOF //