gio
gio

Reputation: 904

assembly resources

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

Upvotes: 0

Views: 303

Answers (2)

grepsedawk
grepsedawk

Reputation: 6059

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

Upvotes: 0

alanc10n
alanc10n

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

Related Questions