1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/msp430-common/startup.c
2013-12-19 15:31:37 +01:00

17 lines
308 B
C

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