#include "ecen.h"
void setup() {
init_port();
}
void loop() {
char x;
volatile long i;
for(x=0;x<8;x++){ //try for(x=7;x>=0;x--) //try for(x=0;x<8;x=x+2) or x = x + 3 or x = x + 4 ... x = x + 7
output( (1 << x) );
for(i=0;i<100000;i++);
}
}