Files
FireBee_SVN/BaS_gcc/sources/basflash_start.c
Markus Fröschle 6b4da80a56 modified to enable remote debugging of basflash.s19.
basflash.s19 does not work in this version (hang)!
2013-02-16 08:30:04 +00:00

17 lines
180 B
C

/*
* basflash_start.c
*
* Created on: 16.02.2013
* Author: mfro
*/
void startup(void)
{
void basflash(void);
void init_serial(void);
init_serial();
basflash();
}