diff --git a/boards/remote-common/include/fancy_leds.h b/boards/remote-common/include/fancy_leds.h index d152f8a010..4cc0752802 100644 --- a/boards/remote-common/include/fancy_leds.h +++ b/boards/remote-common/include/fancy_leds.h @@ -42,11 +42,11 @@ j = k > 400 ? 800 - k : k; \ led##_ON; \ for(i = 0; i < j; ++i) { \ - asm("nop"); \ + __asm__("nop"); \ } \ led##_OFF; \ for(i = 0; i < 400 - j; ++i) { \ - asm("nop"); \ + __asm__("nop"); \ } \ }