assembly crash course for C++ Developer

Hey,

Do you guys know any book or link where learn the most important things about assembly?

I really would like to understand some assembly code for my C++ Code,
to see what the compiler did with my program.. (optimizations, inlines, etc.)

Are there any links/books for a "fast" introduction for that?

You can have the compiler generate that information for you. And there's the instruction set--you could take a look at that.

Is that what you want?
I already did that, but I still don't understand it :P
I also found https://assembly.ynh.io

But it doesn't help me to understand, what exactly is happening.
No idea what assembly looks like if a function got inlined, or what ever.
Last edited on
Do a search on "intel assembly language tutorial"

That seemed to hit useful sites. Is that what you need?
Last edited on
Topic archived. No new replies allowed.