1

I have problems to jump to an label.

My Code:

    asm{
keypress: 
    ...
    cmp ax,0000
    jz keypress
}

Borland says: Undefined Label "keypress"

pmr
  • 58,701
  • 10
  • 113
  • 156

1 Answers1

2

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.

Community
  • 1
  • 1
David Duncan
  • 1,225
  • 8
  • 14