diff --git a/progmem.c b/progmem.c index d2948bb..e1916da 100644 --- a/progmem.c +++ b/progmem.c @@ -18,7 +18,7 @@ static void uart_puts(const char *str) { static inline uint32_t rdcycle(void) { uint32_t cycle; - __asm__ volatile ("rdcycle %0" : "=r"(cycle)); + asm volatile ("rdcycle %0" : "=r"(cycle)); return cycle; }