What's the best "beginner" book for Assembly Language?
|
4
|
|||||||
|
|
|
|
||||||||||
|
|
|
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. |
|||
|
|
|
|
Peter Norton: Programmer's Guide to the IBM PC
It's a bit outdated these days, but still it is a very interesting and useful read. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
I used Microcontrollers and Microcomputers in one of my Computer Architecture classes and found it to be very good. |
||
|
|
|
|
In my earlier years I played around with nasm, which has some very comprehensive documentation. It is still under active development. |
||
|
|
|
|
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. |
||
|
|
|
|
(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. |
||||||||||
|
|
|
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). |
|||
|
