Dave,

This LCD is actually a 7-segments, 4 commons, multiplexed display. That code is more for an LED display type.

Jerson,

Thanks for your comment. So, you know that this displays are a pain in the neck to work with . The code that I posted works perfectly fine, and it can serve as a reference for somebody working with these displays in the future. However, it takes a lot of code space. I was hoping PBP could do something like

Code:
DIGIT_0.0   VAR   LCDDATA0.7
DIGIT_0.1   VAR   LCDDATA3.7
DIGIT_0.2   VAR   LCDDATA6.7
......... And so on
But, I don't think that it can do it. Any ideas?