#include "dk.h"
void setup() {
initf(0xff);
volatile long i, j;
volatile char x;
while(1)
{
for(j=1; j<8; j=j+2)
{
for(x=0; x<8; x++){
outputf(j << x);
for(i=0; i<100000; i++);
}
for(x=8; x>0; x--){
outputf(j << x);
for(i=0; i<100000; i++);
}
}
}
}
void loop() {}