im curious as to if i were to do inline assembly such as
__asm {
mov eax,0
// more assembly here.....
}
does anyone know of how i can calculate how many bytes the assembly code above i produced will use up in my exe? im wanting to add code with inline assembly and keep track of the size of the added inline assembly this code will add to my exe! thx!