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. What is the difference between armeabi-v7a, arm64-v8a, x86?

    Jun 30, 2019 · A bit more context from Tensorflow Lite documentation: Unless you are targeting specific hardware, you should omit the x86, x86_64, and arm32 ABIs in most cases. Since armeabi is the …

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

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

    Jan 3, 2011 · Here is how you push a register. I assume we are talking about x86. push ebx push eax It is pushed on stack. The value of ESP register is decremented to size of pushed value as stack …

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

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

    Nov 14, 2019 · 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 …

  9. What are the names of the new X86_64 processors registers?

    Nov 18, 2009 · The MSDN documentation includes information about the x64 registers. x64 extends x64's 8 general-purpose registers to be 64-bit, and adds 8 new 64-bit registers. The 64-bit registers …

  10. 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 …