I have problems to jump to an label.
My Code:
asm{
keypress:
...
cmp ax,0000
jz keypress
}
Borland says: Undefined Label "keypress"
I have problems to jump to an label.
My Code:
asm{
keypress:
...
cmp ax,0000
jz keypress
}
Borland says: Undefined Label "keypress"
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.