up vote 36 down vote favorite
26
share [g+] share [fb]

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?

link|improve this question

76% accept rate
feedback

15 Answers

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|improve this answer
feedback

x86 Assembly - Wikibooks

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

link|improve this answer
feedback

I can thoroughly recommend Assembly Language Step By Step, for Linux! by Jeff Duntemann (I mean the most recent edition).

It is not a thin book, but it is written in very accessible language and also very enjoyable. In fact, I've liked Jeff's language very much and looking forward to read other his books.

The complex matter of hardware architecture and assembly programming is laid out with perfect balance amount of details - it is minimum which is necessary to understand how it works and to not to leave room for misinterpretation at the same time.

What is also important, the book is self-contained and comprehensive lecture about assembly, so, in my opinion, it is possible to buy only this one, spend a few (rather more) weekends reading it and experimenting with examples, and learn what is written there and all this without buying any more books or materials, as for the beginning.

I completely support what's said in the overview of this book:

The idea behind the book, nutty as it might seem, is to teach assembly language as your first programming language. No previous programming experience required.

It really implements this idea and it does it very well and leaves reader with solid foundations to jump in to advanced topics of the assembly.

It's good to know how it works, but don't be surprised if you go years without ever needing it. --Jeff Duntemann

link|improve this answer
The author tries to be funny and it is bad for stricly technical book. – macias Nov 26 '10 at 6:43
3  
@macias The book is dedicated to beginners, it's a step by step guide with some digressions, explanation where things come from, etc. A raw technical matter does not always work well at this level. Thus, I don't mind a bit of loose atmosphere built up by the author. – mloskot Nov 29 '10 at 10:52
feedback

You can read the book by P. Carter.

link|improve this answer
feedback

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|improve this answer
Actually, the exact opposite is true. You'll find AT&T syntax on a wider variety of embedded projects - including Intel CPUs. IMHO... – paulsm4 Dec 25 '11 at 19:32
feedback

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

The Art Of Assembly.

link|improve this answer
6  
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/1886411972/… – Ross Rogers Dec 17 '08 at 14:39
1  
This book is much better for learning x86 ASM: amazon.com/Assembly-Language-Intel-Based-Computers-5th/dp/… – Ross Rogers Dec 17 '08 at 14:41
This book is not useful in learning real world assembly. It is ok if you never need to read assembly, because it will only teach you how to read and write HLA, a language you will never encounter anywhere outside a university – drhirsch May 29 '11 at 8:53
feedback

If your ultimate goal is to learn hardware architecture, it might be worthwhile to work through Hennessy and Patterson's classic: Computer Architecture: A Quantitative Approach. 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 The Linux® Kernel Primer: A Top-Down Approach for x86 and PowerPC Architectures) 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|improve this answer
Patterson is an excellent book. But it doesn't have much to do with learning assembly :( – paulsm4 Dec 25 '11 at 19:33
feedback

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

link|improve this answer
404! It's available in PDF here: gamedev.net/reference/articles/article1698.asp or from Amazon here: amazon.com/Michael-Abrashs-Graphics-Programming-Special/dp/… – Noah Medling Jul 15 '09 at 18:52
feedback

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.

link|improve this answer
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 '09 at 13:19
feedback

The book I recommend for Linux Assembly is:

Assembly Language Step-by-Step: Programming with Linux

The book I would recommend for Windows Assembly is:

Assembly Language for x86 Processors

link|improve this answer
feedback

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|improve this answer
feedback

IMHO, PC Assembly language is the easiest and most up to date book on Assembly. Not only do you get a good understanding of assembly, but it also answers a lot of questions related to C and C++ code generation and as well as how to interface with codes written in these languages. Furthermore, almost all the examples are solutions to practical problems. You can download it for free from the author's website.

link|improve this answer
feedback

Introduction To 80x86 by Richard Detmer, at least I'm planning to use that one for start in combo with IA manuals

link|improve this answer
feedback

Books by Sivarama P. Dandamudi are really good, I mean the author explains issues in very compact, clear way, and does not tries to be either funny or poet. Simply on topic. Try those:

Guide to Assembly Language Programming in Linux

Introduction to Assembly Language Programming: For Pentium and RISC Processors

link|improve this answer
feedback

I highly recommend Jonathan Bartlett's "Programming from the Ground Up". Not only is it an excellent tutorial on true 32-bit Intel assembler, but it gives good insight into many of the "why's" of different assembler techniques. And it's a free download:

http://savannah.nongnu.org/projects/pgubook/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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