I have problems to jump to an label.
My Code:
asm{
keypress:
...
cmp ax,0000
jz keypress
}
Borland says: Undefined Label “keypress”
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try moving the label to outside of the asm block (i.e., just above the “asm{” line). This is per this link and this link.
Also note that evidently you may not be able to jump to a forward label (per here), but that’s of course not your problem in this example.