HI,
This is regard to win32 console C++.
In C++, we can use inline ASM. It looks something like this,
---------------------
_asm
{ mov eax,4
add ecx,5
ect...
}
----------------------
Because Im doing Assembly in c++ using inline ASM, Is the speed of an Inline ASM (execution) as fast as the real Masm? It seemed so convenient to do it in C++. Just wondering if there was any differences. Thanks in advance.
This is regard to win32 console C++.
In C++, we can use inline ASM. It looks something like this,
---------------------
_asm
{ mov eax,4
add ecx,5
ect...
}
----------------------
Because Im doing Assembly in c++ using inline ASM, Is the speed of an Inline ASM (execution) as fast as the real Masm? It seemed so convenient to do it in C++. Just wondering if there was any differences. Thanks in advance.