DEFINE OSC 4 'tell the pic to run at 4mhz pause 500 'pause for 500 milliseconds before starting main: 'the main loop Serout2 portc.6, 16468, ["hello world",13 , 10] 'the line above sends a debug statement 'in this case "hello world" 'out pin c6 '16468 is the speed the chip is sending information '13, 10 are ascii code for line feed and carriage return goto main 'go to the beginning of the main loop