INTERFACING WITH 8255

Thread Starter

speeed_777

Joined Oct 5, 2008
54
I have the program for interfacing of lcd with 8085,in gaonkar 556 page no. but i don't know how to hex code for it as given that "mesage" db.what's this?
replay fastttttttttttttttttttttttttt
 

Papabravo

Joined Feb 24, 2006
21,228
'db' is the pseudo-operation code for define byte. Most assemblers will take a comma separated list and assemble that many bytes into memory.

Similarly 'dw' is for define word and there may be others that assemble lonmger blocks of constant data including 'ascii' and 'asciz' which are strings with and without null terminators.
 
Top