#include <sysinit.h>
#include "basic/basic.h"
#include "lcd/render.h"
#include "lcd/display.h"
#include "lcd/allfonts.h"
#include "usetable.h"
void ram(void) {
int key;
int i = 0;
bool run = true;
while(run) {
i += 1;
showDisplay(i);
key = getInputWaitTimeout(242);
if(key != 0) {
run = false;
}
}
return;
}
void showDisplay(int i) {
lcdClear();
lcdPrint("Yay!");
lcdNl();
lcdPrintInt(i);
lcdRefresh();
}