1
0
mirror of synced 2024-07-01 09:32:45 +02:00
avremu/tests/string.c
2014-09-28 23:01:47 +02:00

23 lines
295 B
C

#include <avr/io.h>
// Produces LPM operations
const char *foo = "abc";
int main() {
char* p = foo;
while (*p) {
UDR = *p++;
}
asm volatile ("break");
}
/*
check-name: String Operations
check-start:
\avr@instr@stepn{1000000}
\avr@test@UDR{abc}
check-end:
*/