Store ,,procedures" in a table in NASM

96 views Asked by At

Suppose I have a table in .rodata which would store procedure offsets, so I can use:

call [table + index]

in order to call the procedure defined in my code. Is it possible to achieve in PIC? How can I find these offsets and create such a table?

0

There are 0 answers