I'm doing a lab for a comp sci class that involves "defusing a binary bomb," basically reverse engineering a program to gain 6 "passwords." I was just looking for a list of all of the instructions in one, easy to read place.

Thanks

Alex

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

Intel's own manuals are available online. They'll send you a printed copy for free, too:

http://www.intel.com/products/processor/manuals/

link|improve this answer
I don't think you can order printed copies anymore. – Nathan Fellman Oct 5 '09 at 11:05
feedback

A good place to start might be AMD's AMD64 Architecture Tech Docs page. They have the full set of manuals for the processor; Volume 3 (General-Purpose and System Instructions) is most likely the one you're looking for.

By the way, your "question" should probably look more like a question ;)

link|improve this answer
feedback

There really is none -- the instruction set is far too large. That said, http://sandpile.org/ is the best reference for all things x86(-64), IMO. It covers a ton of ground and anything not covered can be googled in a few seconds. I also suggest checking out #openrce on Freenode as it's a great place to get information about all things assembly.

Edit: Huh, SO screwed up my formatting...

link|improve this answer
feedback

Take your pick from http://ref.x86asm.net/. The "geek" edition should be most complete.

link|improve this answer
feedback

The best resource is Intel's or AMD's own datasheets and programmers' guides. I have to warn you they are very long and detailed that you may spend some time to find something but believe me it is worth your effort.

Alternatively you can check http://flatassembler.net for a brief overview.

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.