About 50 results
Open links in new tab
  1. Difference between x86, x32, and x64 architectures?

    Sep 19, 2015 · Please explain the difference between x86, x32 and x64? Its a bit confusing when it comes to x86 and x32 because most of the time 32-bit programs run on x86... Related/possible …

  2. What is the difference between x86 and x64 - Stack Overflow

    Aug 31, 2012 · What is the difference between x86 and x64 binaries here, we would like to download binaries for Windows 7, Ubuntu 12.04 (32 bit options)

  3. Why are there so many CPU architectures: x86, x64, x87, etc...?

    Mar 30, 2011 · 3 x86 is actually a shortened name of the 8086 processor series. Yes, it is a specific instruction set; and usually indicates that it is a 32 bit system (bus size). x64 usually has the same …

  4. Why is Windows 32-bit called Windows x86 and not Windows x32?

    The Windows operating system can be either 32 bit or 64 bit. The 64 bit version is called Windows x64 but the 32 bit version is called Windows x86. Why isn't it called Windows x32? What is the reason?

  5. How to run ARM executable file on x86 android emulator?

    Oct 7, 2023 · Android emulator already supported run app with ARM binaries on x86 platform: Link Support for ARM binaries on Android 9 and 11 system images If you were previously unable to use …

  6. What does "int 0x80" mean in assembly code? - Stack Overflow

    Nov 30, 2009 · 10 int 0x80 is the assembly language instruction that is used to invoke system calls in Linux on x86 (i.e., Intel-compatible) processors. From int 0x80 Definition.

  7. What is the function of the push / pop instructions used on registers ...

    Jan 3, 2011 · What is the function of the push / pop instructions used on registers in x86 assembly? Asked 15 years, 3 months ago Modified 4 years, 2 months ago Viewed 501k times

  8. x86 - What does ORG Assembly Instruction do? - Stack Overflow

    Aug 4, 2010 · can anyone give me a comprehensive description about ORG directive? When and why is it used in assembly written applications? Using Nasm on x86 or AMD64.

  9. What registers are preserved through a linux x86-64 function call

    Feb 4, 2024 · I believe I understand how the linux x86-64 ABI uses registers and stack to pass parameters to a function (cf. previous ABI discussion). What I'm confused about is if/what registers …

  10. x86 - What’s the difference between EAX, EBX, and ECX in assembly ...

    Nov 11, 2022 · eax, ebx, ecx and so on are actually registers, which can be seen as "hardware" variables, somewhat similar to higher level-language's variables. Registers can be used in your …