#include "header.h"
void setup() {
init_port();
volatile char *outf, *outk;
outf = 0x31; outk = 0x108;
unsigned char A[] = {0x38, 0x44, 0x84, 0x08, 0x10, 0x20, 0x40, 0xfc };
char row, col;
while(1){
for(row=0;row<8;row++){
*outk = ~(1<<row);
*outf = A[row];
*outf = 0x00;
}
}
}