I read in many places that assembly language is usually not used to create complete programs, but is used by other programs to make some procedures more efficient, especially those that are called pairs of thousands of times per second. I am wondering how the small bits of the assembly code are included in larger programs.
I thought it was possible to make a small executable file and then run from another program, but that seems inefficient.
Then I thought about the built-in assembly for Visual Studio, but what is typical for Microsoft and it seems that there would be a better way.
So, how can you use the small bits of the assembly code in a larger program without creating separate programs or using the built-in Visual Studio assembly?
user98188
source
share