ok I got the PIC to run... But now I got no LCD. I may have jacked with it so much I trashed it. I hope not...

'************************************************* ***************
'* Name : HandHeld
'* Author : John Moore
'* Notice : Copyright (c) 2010
'* : All Rights Reserved
'* Date : May 16, 2014
'* Version : 1.0
'* Notes :
'* :
'************************************************* ***************
#CONFIG
__config 10000111100001
#ENDCONFIG
CMCON = 7

DEFINE LCD_DREG PORTB
DEFINE LCD_DBIT 4
DEFINE LCD_RSREG PORTB
DEFINE LCD_RSBIT 3
DEFINE LCD_EREG PORTB
DEFINE LCD_EBIT 2
DEFINE LCD_BITS 4
DEFINE LCD_LINES 2
DEFINE LCD_COMMANDUS 1500
DEFINE LCD_DATAUS 44


LCDOUT $FE, $01
START:
LCDOUT "HELLO FKD"
LCDOUT $FE, $C0 "UP WORLD!"

GOTO START

Somebody see something I am missing that's making the LCD play dead? Contrast works, no response past that tho...