#include "suryaa.h"
// 8*8 dot matrix display
//port f is configured for column,i.e,A0-A7;
//port k is configured for row, i.e A8-A15;
void setup()
{
dirf(0xFF);//configuring port f as output,for,dot matrix.
dirk(0xFF);//configuring port k as output,for dot matrix.
timer1_delay_1sec_interrupt();//making timer to run in parallel,
}
void loop()
{
//scroll_text_A_top_to_bottom();
// scroll_text_A_bottom_to_top();
//scroll_text_A_right_to_left();
scroll_text_A_left_to_right();
//scroll_text_A_top_to_bottom();
}