We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi,
I would like to check whether "$" has any significant meaning in coding for 8051 in assembly language?
I currently has a code by other ppl, it has no compiling error and looks ok. But i can't find the meaning of "$"...
The example code is: JNB TI, $
The code check for transmit interrupt. What will happen if TI is not set? Pls help.
regards,
"$" refers to the current code space address.
JNB TI, $
is equivalent to:
my_label: JNB TI, my_label