vote up 12 vote down star
6

I'm looking to teach myself basic hardware architecture; specifically, I'd like to learn x86 assembly for Linux or OSX. What books does this community recommend?

flag

77% accept rate

9 Answers

vote up 0 vote down

You are actually looking for a book on x86 that also teaches you ASM.

What caen be better than Barry B. Brey's excellent book "The Intel Microprocessors 8086/8088, 80186/80188, 80286, 80386, 80486, Pentium, and Pentium Pro Processor Architecture, Programmining"

I found a link at link text

link|flag
Don't worry about Linux or OSX as far as syntax is concerned. Once you have a good understanding, syntax is easy. – PoorLuzer Oct 18 at 13:19
vote up 0 vote down

You can read the book by P. Carter. It is available here:

http://www.drpaulcarter.com/pcasm/

link|flag
vote up 0 vote down

Here is another nice little tutorial resource that can be found here: link text

It explains in not too many words, the nuts and bolts of assembly and writing Apps from yet another different perspective. you can never get too much reading done is what I say so in addition to the other great resources, this is one to add to your bookmarks.

link|flag
vote up 2 vote down

It isn't for writing modern x86 code, but Abrash's Graphics Programming Black Book is nice to read. :)

link|flag
404! It's available in PDF here: gamedev.net/reference/articles/… or from Amazon here: amazon.com/Michael-Abrashs-Graphics-Programming-S… – Noah Medling Jul 15 at 18:52
vote up 4 vote down

A note - gcc uses AT&T syntax for inline assembly. This is different from Intel syntax which is what you'll find in most references and books on the subject. I believe that you can supply Intel syntax to gcc using the right flag, but I'm not sure what that is.

Also, in regards to: "I'd like to learn x86 assembly for Linux or OSX"

Assembly language is not OS-specific (it's architecture-specific). Linux is very much a cross-platform operating system, and that means there are several different sorts of assembly language to be found in the kernel!

Of course there are things you need to know about the Linux kernel in order to program for it, but the language you're using to do it is really the same as for OSX or any other operating system.

I think the 386 manual is great general reference for x86 because it's written in a style that's both informative and easy to read.

link|flag
vote up 2 vote down

If your ultimate goal is to learn hardware architecture, it might be worthwhile to work through Hennessy and Patterson's classic. (http://www.amazon.com/Computer-Architecture-Quantitative-Approach-Kaufmann/dp/1558605967). This doesn't have much information about x86 though; but will give you a solid understanding of the design issues in modern processor architecture.

Also, a good book on the linux kernel (I use http://www.amazon.com/Linux-Kernel-Primer-Architectures-Development/dp/0131181637) might useful to understand some of the more esoteric issues - task switching, page tables and the like. The book has a lot of code samples that use x86 assembly.

link|flag
vote up 9 vote down

I learn from references, rather than tutorials; if you're the same way, you're likely to enjoy these:

Intel's documents have very good coverage of both 32-bit and 64-bit programming. I haven't looked at AMD's materials in enough depth to talk about its treatment of 32-bit programming. Nevertheless, I believe that 64-bit programming knowledge is good to have in your toolkit, so it probably helps if you get both sets of documents to look at. :-)

link|flag
vote up 5 vote down

x86 Assembly - Wikibooks

I've found this website to be very useful, especially for explaining individual instructions.

link|flag
vote up 7 vote down

For learning assembly language, this reference online is about as good as you can get:

The Art Of Assembly http://webster.cs.ucr.edu/AoA/index.html

link|flag
1  
Do NOT buy "The Art of Assembly Language" book. The book is about a macro language (HLA) on top of ASM. Its not about ASM!! Just look at the reviews on amazon: amazon.com/Art-Assembly-Language-Randall-Hyde/dp/… – Ross Rogers Dec 17 '08 at 14:39
This book is much better for learning x86 ASM: amazon.com/Assembly-Language-Intel-Based-Computer… – Ross Rogers Dec 17 '08 at 14:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.