From 2affe4c1e52775be8ad5eb0b026987ab712efcee Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Fri, 3 Dec 2021 10:03:29 -0700 Subject: Fixed volatile ASM --- src/lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib.c b/src/lib.c index d6a5c9e..4493459 100644 --- a/src/lib.c +++ b/src/lib.c @@ -24,7 +24,7 @@ static inline void store32(unsigned long value, unsigned long addr) { } static inline void delay(unsigned long cycles) { - asm volatile("__delay_%=: subs%[cycles], %[cycles], #1;bne __delay_%=\n" + asm volatile("__delay_%=: subs %[cycles], %[cycles], #1;bne __delay_%=\n" : "=r"(cycles): [cycles]"0"(cycles) : "cc"); } -- cgit v1.2.1