mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 10:12:45 +01:00
cpu: atmega1281: asm -> __asm__
This commit is contained in:
parent
f4bee2672c
commit
705f0c768a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user