#include "header.h"
void setup() {
init_port();
volatile char *outf, *outk;
outf = 0x31; outk = 0x108;
unsigned char A[] = {0x00, 0x24, 0x7e, 0x24, 0x24, 0x7e, 0x24};
char row, col;
while(1){
for(row=1;row<7;row++){
*outk = ~(1<<row);
*outf = A[row];
*outf = 0x00;
}
}
}