Is there a way to get all the instructions that my processor supports software?

Or is there a tool for this kind of work?

I also want to get the appropriate machine code for each instruction.

+3
source share
4 answers

The CPUID instruction tells you what features the processor supports for x86 processors.

http://www.intel.com/assets/pdf/appnote/241618.pdf

You will need to consult the instruction manuals for operation codes, so the CPU cannot tell you that 'opcode 0x ?? is an XYZ instruction' programmatically.

+5
source

, , . Google .

0

CPU-Z - , .

, , ASM Assembly.

0

All Articles