#include "all.h"
void setup() {
// put your setup code here, to run once:
init_port();
}
void loop() {
// put your main code here, to run repeatedly:
volatile char* out;
out = 0x31; //port F
*out = 0b01011011;
/**simply look into the abcdefg poistion on the display and choose for the no: 2
which led will turn on in binary postion would be
like [dot bit which will be 0]gfedcba so for 2 -> 0b01011011 or 0x5B
**/
out = 0x108; //port K
*out = 0x6D;
}