Yes,
I've run 'em that way on the 'pro, as long as the LCD supports nibbles (most do).
Code:
; LCD (parallel) defines
; ground R/W pin 5 on LCD, use 5K pot LCD pin 3 (across VCC and GND)
; 11/02/10 alm
;lcdinit P0\P1\P7\P6\P5\P4,P2
; ; GND pin 1
; ; VCC pin 2
; ; Vo contrast pin 3
LCD_RS con P0 ; H/L Reg select pin 4
LCD_E con LCD_RS +1 ; H/L enable pin 6
LCD_RW con LCD_E +1 ; H/L read/write pin 5
;
LCD_D4 con P4 ; DB4 pin 11
LCD_D5 con LCD_D4 +1 ; DB5 pin 12
LCD_D6 con LCD_D5 +1 ; DB6 pin 13
LCD_D7 con LCD_D6 +1 ; DB7 pin 14
; ; BKL 4.V+ pin 15
; ; BKL GND pin 16
lcdinit P0\P1\P7\P6\P5\P4
lcdwrite P0\P1\P7\P6\P5\P4,[CLEARLCD,HOMELCD,SCR,TWOLINE,"MicroMouse"]
(well, it looked better formatted when I typed it in)
You don't really need the RW line.
Alan KM6VV