#include "include.c"

/* 
* DELAY
* för att ska delay
*/

void delay(int x){
  for(int i=0; i<x; i++){
    asm("nop");
  }
}

