Intel & motorola asm sintexis

Programming, for all ages and all languages.
Post Reply
eL JeDi

Intel & motorola asm sintexis

Post by eL JeDi »

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.
jrfritz

Re:Intel & motorola asm sintexis

Post by jrfritz »

Here:

.intel_syntax no_prefix

call eax

.att_syntax prefix ; You NEED To reset it to AT&T!
Post Reply