Hi guys,
I'm new to this forum and this is my first post :cheesy:
I need help in modifying a "Snake game" program..
What I need to do is modify the program so that when it starts (i.e. the AVR microcontroller is reset) it displays a message giving the name of the game and your name(s). This should be displayed for several seconds before the game commences.
I know that I have to add it to the function splash_screen()
so I typed this in it:
void splash_screen(void) {
clear_terminal();
/* MY CODE HERE */
printf("Snake Game\n");
printf("Name\n");
init_timer(8000);
}
BUT it doesn't display what i want :confused:
I attached the whole program file if in need to look at the whole thing.
Regrads,
Simplicity ;)