All Projects → zneak → X86doc

zneak / X86doc

Licence: unlicense
HTML representation of the Intel x86 instructions documentation.

Programming Languages

python
139335 projects - #7 most used programming language

x86doc

I needed a parsable copy of Intel's x86 instruction set documentation for a personal project, so I downloaded volumes 2A and 2B of the Intel® 64 and IA-32 Architectures Software Developer's Manual (which can be found here and here, respectively), and used a online PDF-to-HTML tool to transform them to HTML files. Unfortunately, the result was beyond terrible and absolutely unusable.

They say that you're never better served than by yourself, so I took the matter into my own, pdfminer-gloved hands to extract HTML pages straight from the documentation PDF themselves.

This is still not perfect, but it's already much better than the other solution (and it doesn't involve an ugly third-party).

How To Run

  1. Install pdfminer;
  2. Get yourself a copy of the Volume A and Volume B PDFs.
  3. pdfminer doesn't understand how these are encrypted, so print them to PDF, both starting only from the first instruction in the document (not the whole document);
  4. Run python extract.py vol2a.pdf vol2b.pdf;
  5. Go grab a coffee;
  6. Enjoy your documentation set.

The set is also available online at felixcloutier.com/x86.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].