vote up 2 vote down star
4

What's the best "beginner" book for Assembly Language?

flag
1  
which assembly language? – aib Oct 14 '08 at 1:19
You should consider learning MIPS as a first assembly language. It is a good "teaching" assembly language. You have a lot of general purpose registers which can ease things a little. – KingNestor Feb 28 at 19:00

13 Answers

vote up 13 vote down check

The Art of Assembly Language.

link|flag
4  
The most important thing to realize for someone considering this book is that despite its title it doesn't cover assembly language but rather "High Level Assembly", an teaching tool invented by the author that I personally find quite unattractive and have yet to see used in the real world. – Robert Gamble Oct 14 '08 at 2:44
Exactly my point Robert. – raz0r Oct 14 '08 at 10:53
This is really a good book, sure they are taling about the HLA but they show how to use pure X86 e.g in 7.8.2 and elsewhere. However the book is very comprehensive, so 1+ from me. Regards Friedrich – Friedrich Dec 15 '08 at 6:41
I think the 16-bit edition uses assembly language – John T Feb 28 at 18:59
vote up 0 vote down

When I was in school, I learned Motorolla 68000 assembly using this book.

The processor architecture is such that it's very assembly-programmer friendly: there are lots of memory addressing modes which makes operations take less lines of assembly code.

The drawback is that it's very unlike modern RISC processor architecture, which have few addressing modes and are designed for speed and simplicity rather than a rich "API" for assembly programmers.

link|flag
vote up 1 vote down

Peter Norton: Programmer's Guide to the IBM PC

Book cover

It's a bit outdated these days, but still it is a very interesting and useful read.

link|flag
vote up -1 vote down

Like John Dyer said, learning assembly on a 6502 or 6502 variation is a good way to go for beginners. The chips were designed so that a human could program them with assembly language. Modern chips are insanely complex.

My personal recommendation would be to grab a Commodore 64 emulator and learn using Machine Language for the Commodore 64 and other Computers. This book is long out of print, but it's fairly easy to track down a used copy or a PDF online.

link|flag
vote up 0 vote down

I learned with Zen of Assembly Language (Abrash). Though I suspect this is more of a collector's item by now, it does have some great material that is relevant today.

link|flag
vote up 0 vote down

I highly recommend you check out Webster. This is the home of the Art of Assembly book. It teaches you the internals of the CPU and the basics of assembly that you need to know no matter what assembler you decide to use. The book teaches HLA (High Level Assembler) which is actually a great language for learning assembly. It provides a framework for your code so you can jump right in making real programs right from the start. You can easily move on to other assemblers after you learn the fundamentals with HLA. (I recommend GoAsm). Other great resources are Hutch's web site and the Iczelion tutorials.

link|flag
vote up 2 vote down

In spite of everyone's vote for Art of Assembly, I don't know how many of those who voted for it really read the book from top to bottom.
Instead of teaching you a nearly standard Assembly dialect, the book attempts to teach you HLA (High Level Assembly), an assembly dialect invented by the author of the book himself, aimed at giving people an easier introduction to Assembly language.
So instead of learning some useful dialect (for ex. NASM or GNU Assembler), which you might actually use or need some time, you'll find yourself learning a barely known non-standard assembly dialect which you will more than probably never use nor need.
There is however another edition of the Art of Assembly book which is worth reading and that is Art of Assembly - DOS 16 bit Edition. Unfortunately, as the title says it treats only DOS 16 bit but other than that it can give you a nice introduction into Computer Architecture and Assembly Language.
Now, a book that I would recommend you on this subject is Introduction To Assembly Language Programming which I think will get you started pretty fast. It treats both CISC and RISC architectures so you will really have what to learn from it.

link|flag
vote up 1 vote down

I used Microcontrollers and Microcomputers in one of my Computer Architecture classes and found it to be very good.

link|flag
vote up 1 vote down

In my earlier years I played around with nasm, which has some very comprehensive documentation. It is still under active development.

link|flag
vote up 1 vote down

If you're really serious about learning assembler, then consider getting something like an old KIM-1 system. That had a 6502 processor and a nice simple instruction set. Although a quick look on e-bay and I have to say, that one is not worth 350 bucks: )

But there were a bunch of systems made "back in the day". A Z-80 system, one of the old 6800 Heathkit ET-3400 trainer might be nice. I see one for a couple of bucks on e-bay.

These old systems are real simple but have a nice LED display, a monitor ROM and some I/O to get you started with a couple of simple projects.

link|flag
vote up 8 vote down

(1)There is no single assembly language. Each processor has its own, and even then there are different syntaxes(eg, gcc versus visual studio)

(2)Assembly languages are pretty straightforward. You'd be better off picking up an Assembler(the program that reads assembly files) and the CPU reference manual and writing some code, than buying a book.

link|flag
(1) Most people, esp beginners, will start with x86 these days. (2) I agree. After my first class in machine architecture, where we were taught some PDP-11 assembler, this is how I learned every other machine. – Craig S Mar 1 at 19:34
I wouldn't start out with something as complicated as x86. In university, we used the Motorola 68000 processors. They aren't advanced, but they are simple enough that you can easily work with them. – Kibbee Mar 1 at 19:37
1  
I suppose you could use an emulator to run your code. But most people will have ready access to an actual x86 in the form of their own computer. Personally, I think x86 assembler stinks, but machines are readily had. – Craig S Mar 1 at 19:59
I like the IA-32 assembly language. It's very usable. Well, IMO. ;) – Paul Nathan Mar 1 at 20:14
vote up 3 vote down

As dry as it may sound, if you're going to do any serious work, I've always found the manufacturer's or architect's assembler manual indispensable when working with assembler. If you don't have one on hand they are many times available from the manufactorer's site.

Edit: As OJ mentions a "Manual" isn't a beginners book as such, however unlike other languages, that have basic syntax, advanced syntax, best practices, patterns, etc... Assembler really just boils down to instructions. 90+% of understanding assembler is knowing what instructions you have at hand, and the other 10% is figuring out how to remember what your app is doing (extensive commenting is a plus!).

Unfortunately each machine has its own instruction set (and just as important a manufacturer dependent hardware performance/cost associated with that instruction, which you SHOULD care about since you chose assembler in the first place, otherwise you'd use a higher level language).

Hence, as before, instead of a beginner's guide which doesn't exist for assembler in a general sense, I really recommend the "Manual" as your best friend, no other book will do you as much good, because you'll be talking directly with the metal, and no-one knows the metal better than the one who made it.

On a side note, if you are just learning for the fun of it, start out with a machine that uses a RISC (reduced instruction set computing) instruction set, as that is both easier to understand and also commercially a valuable skill to have (ie. ARM or PowerPC programming).

link|flag
While valuable, the manufacturer's ASM manual is hardly a book for beginners. References manuals don't help beginners learn. AoA (recommended by cdv) is a much better option. The instructions aren't what needs to be learned at first, it's the concepts behind ASM Programming that are key. – OJ Oct 14 '08 at 1:41
vote up 6 vote down

Assembly Language Step-by-step.

link|flag

Your Answer

Get an OpenID
or

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