Hi, I have defined global variable in C. I wanted to access that global variable in Assmebly function without passing parameter. Can you please guide me. Example: In my C program:- extern unsigned char lb; . main() { . }
I want to use same variable lb in assembly... how to use it??
Regards, Pranav
There is a whole section in the C51 manual titled interfacing C to assembler - the clue is in the name...!