assembly crash course for C++ Developer

Feb 9, 2016 at 9:08am
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?

Feb 9, 2016 at 9:11am
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?
Feb 9, 2016 at 9:18am
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 Feb 9, 2016 at 9:20am
Feb 9, 2016 at 9:23am
Do a search on "intel assembly language tutorial"

That seemed to hit useful sites. Is that what you need?
Last edited on Feb 9, 2016 at 9:23am
Topic archived. No new replies allowed.