1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/cpu/msp430-common/startup.c
Oliver Hahm 8304a8ae7b [board/msb-430-common board/eZ430-Chronos cpu/msp430*]
* reorganized msp430 based cpu folders
2010-12-08 12:16:49 +01:00

17 lines
320 B
C

#include <stdio.h>
#include <board.h>
#include <kernel_intern.h>
extern void board_init();
__attribute__ ((constructor)) static void startup() {
/* use putchar so the linker links it in: */
putchar('\n');
board_init();
puts("ukleos MSP430 hardware initialization complete.\n");
kernel_init();
}