[Help]Book for Asm
What is a good book to learn asm from?
32assembly.online.fr/tutorials.html
_asm
{
; code here
}
static int GL_SelectTexture( int texUnit )
{
__asm
{
mov esi, texUnit
mov eax, GL_SELECTTEXTURE_ADDRESS
call eax
}
}