tags:

views:

89

answers:

2

Could you give some guidance for good resources (books, online tutorials) about embedded assembly in C/C++ for windows?

+3  A: 

I believe what you're asking about is called inline assembler, not embedded. You can include inline assembly code using the __asm keyword in C/C++. See MSDN inline assembler article for some info.

idontwanttortfm
A: 

This is one of the best win32 assembly sites around: http://win32assembly.online.fr/

grepsedawk