11
Using NASM / Re: windows x86 64bit help
« Last post by hockey97 on August 27, 2024, 07:08:32 PM »Surely it's better to learn the Windows 64-bit API for 64-bit Windows apps? Does the Win32 API even still exist in Windows 11?Yes, for windows api you can write 32 bit programs and 64 bit programs.
WoW64 folder in windows folder holds the windows api files for 32bit programs.
The System32 folder holds the windows api that's for x86-64 programs.
There's no api for strictly fore 64 bit . However, in the future Microsoft is going to have to rewrite or make major changes to the windows API for future cpus.
Intel already announced the cpu's they're working now on is going to be a strict 64bit chip. No backwards capability. They made a new ISA which is strictly 64bits.
That's where the future is going anyways. However, you're going off topic. I am trying to make that commands to compile the files to a 64 bit program. an x86-64 program.
How would that be done? Or do I list the files in where I listed the object files and don't need to use flags or arguments to compile it.