About 43,100 results
Open links in new tab
  1. Is it possible to run x86 assembly on a x64 operating system?

    Sep 21, 2015 · Registers in x86-64: (source: usenix.org) For example: Here you can see that rax is the new 64 General Purpose register but you still can use eax as it refers to lower 32 bits of …

  2. Can an x64 application use x86 assemblies - and vice versa?

    Apr 23, 2010 · 8 You can run x86 apps on a 64 bit OS using WOW32 emulation. Some pitfalls that I have encountered - you can't mix and match 32/64 in the same process. So if you intend …

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

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

    Feb 3, 2013 · X86 Applications are compatible with both x86 and x64 systems. X86 having an architectural interface used by intel Require using more registers to split and store the value. …

  5. Is it possible to make Visual Studio C++ build which supports x86 …

    Oct 31, 2024 · Native code development like C++ must choose the architecture at build time and it is x86, x64, or ARM64 for Windows. Generally all Windows x64 client systems can run x86 …

  6. Adding x86 and x64 libraries to NuGet package - Stack Overflow

    Feb 3, 2016 · Adding x86 and x64 libraries to NuGet package Asked 9 years, 11 months ago Modified 4 years, 11 months ago Viewed 22k times

  7. Why do 32-bit applications work on 64-bit x86 CPUs?

    Feb 4, 2015 · The current x86-64 assembly language can still perform arithmetic operations on 32-bit registers using instructions like addl, subl, andl, orl, ... etc, with the l standing for "long", …

  8. can an x64 computer have both the x86 and x64 .net runtime …

    Dec 27, 2008 · 4 can an x64 computer have both the x86 and x64 .net runtime installed? If so, how can I ensure that a program runs on the x64 runtime and not the x86 runtime?

  9. x86 64 - Why does referencing x86 dll from a x64 compiled project …

    Jan 29, 2025 · The format of the data in the text file I obviously want in only one place, so I put this in a stand alone project in the x86 app and then I (absent mindedly) referenced the x86 dll …

  10. fatal error LNK1112: module machine type 'x64' conflicts with …

    Aug 25, 2010 · You probably have one .OBJ or .LIB file that's targeted for x64 (that's the module machine type) while you're linking for x86 (that's the target machine type). Use DUMPBIN …