#include #define SIMULATION .section .text .global main main: rcall AvrLabInit ;your code goes here polling_loop: rcall AvrLabPoll ;your code goes here rjmp polling_loop ret .global __vector_default __vector_default: reti .end