Reputation: 904
Could you give some guidance for good resources (books, online tutorials) about embedded assembly in C/C++ for windows?
Upvotes: 0
Views: 303
Reputation: 6059
This is one of the best win32 assembly sites around: http://win32assembly.online.fr/
Upvotes: 0
Reputation: 5077
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.
Upvotes: 3