This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Interface LCD via assembly language

I would like to know if it is possible to use assembly language to interface with the LCD screen on 8051 f120.
I have searched different places, but they all use c language to use the LCD. Can you please include an example in your answer if assembly language can be used.
Much appriciated

  • I would like to know if it is possible to use assembly language to interface with the LCD screen on 8051 f120.
    yes it is

    Can you please include an example in your answer if assembly language can be used.
    you can probably find some in the codelib at http://www.8052.com, but beware, if you can not write the code yourself , downloaded code is worthless.

    Erik

  • The 8051 neither knows nor cares what source language you use;

    The LCD doesn't even know nor care what processor you use!

    "they all use c language to use the LCD"

    Assembler gives you direct acccess to the processor's instruction set - so, if it can be done at all, it can be done in assembler!

    If you have 'C' code, then you have a specification of what you need to do;
    If your assembler skills are not up to implementing this, then you need to go back to basics with learning assembler...