//Target: atmega168 attiny861
#include "avrport.h"

#include "Test_common.h"

/*****************************************
 Functions
*/

// this does not work for atmega168, god know why
void main (void) {
  uint8_t hex;
  init();

  while(1) {
    port_run();

    GETHEX;
    WRLED;
  }
}
