#include //This will display the capital letter A in the middle of the screen// void main() { delay_ms(20); //Allows TV Character Generator module initialization putc(1); //Command = 1 - white character over a black background putc(19); //X position putc(11); //Y position putc(65); //ASCII code for capital letter A while(true); }