Why There is a difference between assembly languages like Windows, Linux?

后端 未结 9 987
感动是毒
感动是毒 2021-01-30 17:53

I am relatively new to all this low level stuff,assembly language.. and want to learn more detail. Why there is a difference between Linux, Windows Assembly languages?

9条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-30 18:25

    In addition to other answers.

    OS dictates its Application Binary Interface (ABI), which includes format of executable objects. These are Executable and Linkable Format (ELF) for Linux (and many other Unix-like systems), and Portable Executable (PE) on Windows. See this table for other formats.

提交回复
热议问题