Differences between at&t assembly and Intel assembly syntax

Source: Internet
Author: User

At&t uses $ to indicate immediate operations, while Intel's immediate operations do not need to be defined. Therefore, $4 is used when the at&t syntax is used to reference the decimal value 4, and 4 is used when the Intel syntax is used.

 

At&t adds the prefix % to the Register name, But Intel does not. Therefore, use the at&t syntax to reference the eax register and write it as % eax.

 

At&t syntax uses the reverse sequence to process source and target operands. Transmit the decimal value 4 to the eax register. at&t syntax is movl $4, % eax, while Intel syntax is mov eax, 4.

 

At&t syntax uses a separate character to reference the data length used in the operation after the mnemonic, while Intel syntax declares the Data Length as a separate operand. At&t command movl $ test, % eax is equivalent to mov eax, dword ptr test of Intel syntax.

 

Different syntaxes are used to define segments and offset values for long invocation and redirection. At&t syntax uses ljmp $ section and $ offset, while Intel syntax uses JMP section: offset.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.