Most voted "x64" questions
x64 is the generic name given to the 64-bit technology-based processor architecture used by AMD and Intel processors, which allow not only running either 32-bit or 16-bit programs without loss of speed or compatibility, as well as supporting new generations of programs that include an allocated 64-bit address space and other capabilities.
Learn more…12 questions
Sort by count of
-
18
votes1
answer237
viewsStack and memory align operation in MASM X64
I have an application that takes a TAC code (IL) and generates an ASM code using x64 MASM. The problem is that I’m not having any compilation error, and yes, (at least that’s what I think) at the…
-
9
votes1
answer138
viewsSwitching from 16 to 64 bits while booting an Intel PC compatible
Some time ago I studied to create a draft operating system for Intel PC compatible computers, which actually didn’t need to do much, besides putting the computer in 32-bit mode, handle keyboard…
-
8
votes1
answer790
viewsXAML without previewer or designer - Visual Studio
I’m using Visual Studio 2015 Community with Xamarin, and I realized that when editing XAML in designer mode (Shift + F7) I can’t see the preview of it, because another window opens with the same…
-
6
votes1
answer356
viewsDevelop for x86 and x64 platforms
More and more operating systems are prioritizing the "version" 64bits, with this, developing applications for this architecture becomes increasingly attractive. Based on this scenario, I ask what…
-
6
votes1
answer857
viewsAny CPU or x64?
I searched for compilation on Any CPU and x64, but found nothing regarding performance and file size. There is difference between these two in this question when the machine is x64? Website using C#…
visual-studio performance compilation x64 jitasked 7 years, 2 months ago Fernando Augusto De Almeida Ba 91 -
5
votes2
answers195
viewsCompile Linux-ready Assembly on OSX
I’m trying to do a study of compilers, so I have to compile an Assembly of a language called howto with nasm. the intermediate code generated by the howto compiler is as follows: extern printf…
-
4
votes1
answer293
viewsAssembly compatibility and architectures
I have no experience with low-level Assembly language. What is required to obtain the maximum of cross Platform with that language? I mean, if I just focus on AMD64 (x86-64) I’ll get compatibility…
-
2
votes1
answer319
viewsHow to make a simple Hello World using C conventions?
Knowing a little of the conventions in C and the generalization of code that it can provide us, I tried to implement my "Hello World": global main extern printf section .data helloworld db 'Hello…
-
2
votes1
answer184
viewsProgram crashes after stack allocation and call in C
I’m trying to make a simple program: allocate on the stack an integer, calls scanf from the C library and print it on the screen. I’ve done the same Disassembly in C, and I try to reimplement it,…
-
2
votes2
answers135
viewsHow to capture information from a 64-bit process that is running?
Well, I need help to capture the information of a running process. I can accomplish this task by accessing the mainmodule 32-bit processes, however, I cannot do the same with 64-bit processes. I…
-
1
votes0
answers44
viewsError and Warning when changing the Anycpu platform to x64
I had a problem, which, when trying to capture 64 Bites processes on x86 platform, an exception error occurred. I managed to solve it by creating an application 64 and a 32 Bites. I packed all the…
-
1
votes1
answer160
viewsAccess 64-bit key in Windows Registry through 32-bit application
I need to get information related to the network to list in an application I’m doing, but I have a problem accessing the Registry Windows because of project preference. Path: Right-click the class,…