You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
233 B
C

#include <avr/io.h>
#include <util/delay.h>
#include "main.h"
int main (void)
{
Prog__main_mem mem;
Prog__main_reset(&mem);
while(1){
Prog__main_out _res;
Prog__main_step(&_res, &mem);
_delay_ms(1000);
}
return 0;
}