#include <p18f8722.h>
#include <stdio.h>
#include "pc104.h"
void main (void)
{
init_MC104P(); // configure MC104P inputs, outputs, analog and pc104 bus
init_cirrus_video(); // initialize the VGA video card with Cirrus Logic
cls(); // clear the video screen of text and colors
locate(1,1); // set the cursor position to upper left of the screen
color(0x7,0x0); // set the modal color of the text to white on black
printf("Hello world"); // display a message
while(1)
{}
}