|
|
|
|
|
by flavio81
3308 days ago
|
|
Productivity apps are almost never developed in assembly language. They are developed in some high level language, so for each of such language, assuming the Windows 10 APIs are the same (which they WILL be, no need to change them): - Java Java applications will not require any recompilations, they will run immediately because they run on a JVM - C#/VB/F# Those applications still will run right away because they run in the .NET CLR virtual machine. - C++, C These applications, considering they are already using the Windows APIs, should recompile with few changes. Games, nowadays, are also developed using frameworks. They mostly depend on the GPU nowadays, and the GPU was never x86 architecture either, so no big change there. |
|
Except for the native libraries that they depend on.