#include <TVout.h>
#include <TVoutfonts/fontALL.h>
TVout tv;
void setup() {
tv.begin(NTSC, 128, 96);
tv.select_font(font8x8);
tv.print(65, 40, "Press any key");
}
void loop() {
tv.clear_screen();
// put your main code here, to run repeatedly:
}
void awake() {
}
void run() {
}
void configureScreen() {
}