I'm looking for a method to continue program execution from a label. Basically, I'm trying to do 'Goto' in ASM. I know this is done via !JMP, but it's not that simple. I'd like to Jump to a memory address defined by a variable. Like this:
Code: Select all
address = ?label ; PureBasic variable
!JMP [_address]
;This line will never be executed
label:
;The execution continues here


