I am new with assembly. Trying to port the assembly written in Intel syntax to X86 assembly syntax. I am done with almost all the required statements. But can't find any way to port the below call in Intel Syntax
call [ebp+16]
to X86 assembly syntax. Based on google I get the below statement for x86
call label
Is it possible to do something like "call 16(%ebp)" in X86 assembly? If so what are the ways to do so?