1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

cpu: atmega1281: asm -> __asm__

This commit is contained in:
Kaspar Schleiser 2016-09-06 00:07:19 +02:00
parent f4bee2672c
commit 705f0c768a

View File

@ -49,12 +49,12 @@ void init8_ovr(void) __attribute__((naked)) __attribute__((section(".init8")));
void init7_ovr(void)
{
asm("call reset_handler");
__asm__("call reset_handler");
}
void init8_ovr(void)
{
asm("jmp exit");
__asm__("jmp exit");
}
/**
* @brief This function is the entry point after a system reset