In x86 assembly, how can I perform an unconditional jump from one section another?
Eg:
.section .text
main: ...
jmp here
...
.section .another
here: ...
I guess this is a far jump. I get a segfault when trying to run this. Any workaround?