Suppose I have a bit of _asm code that is like the following:
// Unimportant calculations that end in one of the following Labels
OPTIONA : MOVE EAX, EDX
JMP END
OPTIONB : MOVE EBX, EDX
JMP END
OPTIONC : MOVE ECX, EDX
JMP END
END:
Is there a way to exit the _asm part of the code without adding and "END" label?
If I was using C I would swap JMP END with return