Skip to content
Snippets Groups Projects
nothing.c 159 B
Newer Older
davip00's avatar
davip00 committed
#include <mdk.h>

int main(void) {
davip00's avatar
davip00 committed
    for (;;) {
        // So compiler doesn't optimize out the loop
        __asm__ volatile("nop");
    }
davip00's avatar
davip00 committed

davip00's avatar
davip00 committed
    return 0;
}