Hi,
how can I translate this motorola sintaxi into intel sintexi?
call *%eax
I've tried call [eax] and eax without the [ ] but not works.
Intel & motorola asm sintexis
Re:Intel & motorola asm sintexis
Here:
.intel_syntax no_prefix
call eax
.att_syntax prefix ; You NEED To reset it to AT&T!
.intel_syntax no_prefix
call eax
.att_syntax prefix ; You NEED To reset it to AT&T!