modified to enable remote debugging of basflash.s19.

basflash.s19 does not work in this version (hang)!
This commit is contained in:
Markus Fröschle
2013-02-16 08:30:04 +00:00
parent a1e072f16f
commit 657c105ee6
5 changed files with 146 additions and 48 deletions

16
sources/basflash_start.c Normal file
View File

@@ -0,0 +1,16 @@
/*
* basflash_start.c
*
* Created on: 16.02.2013
* Author: mfro
*/
void startup(void)
{
void basflash(void);
void init_serial(void);
init_serial();
basflash();
}