drop two-line vector.c dispatchers in favor of central dispatch

This commit is contained in:
chrysn
2012-10-18 16:29:58 +02:00
parent 172ce56e3c
commit 5afa53f01a
9 changed files with 19 additions and 24 deletions

11
lib/dispatch/vector.c Normal file
View File

@@ -0,0 +1,11 @@
#if defined(STM32F4)
# include "../stm32/f4/vector.c"
#elif defined(LPC43XX)
# include "../lpc43xx/vector.c"
#else
static void pre_main(void) {}
#endif