DEFINE LCD_DREG PORTB DEFINE LCD_DBIT 4 DEFINE LCD_RSREG PORTA DEFINE LCD_RSBIT 5 DEFINE LCD_EREG PORTA DEFINE LCD_EBIT 4 DEFINE LCD_BITS 4 DEFINE LCD LINES 1 DEFINE LCD_COMMANDUS 2000 'Command delay time in us DEFINE LCD_DATAUS 50 'Data delay time in us Pause 1000 loop: Lcdout $fe, 1 LCDOUT $FE, $0E ' Clear LCD screen LCDOUT $FE, $0F ' Clear LCD screen Lcdout "Rafalski" ' Display LCDOUT $FE, 192 LCDOUT "y" Pause 4000 ' Wait .5 second Lcdout $fe, 1 ' Clear LCD screen Lcdout "Denis" Pause 4000 ' Wait .5 second Goto loop ' Do it forever