Changeset 65790 in vbox for trunk/src/VBox
- Timestamp:
- Feb 14, 2017 4:59:50 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllInstructionsOneByte.cpp.h
r65768 r65790 22 22 extern const PFNIEMOP g_apfnOneByteMap[256]; /* not static since we need to forward declare it. */ 23 23 24 25 26 /** @name One byte opcodes. 27 * 24 /** @def og_gen General 28 25 * @{ 29 26 */ 30 27 31 /** Opcode 0x00. */ 28 /** @def og_gen_arith Arithmetic 29 * @{ 30 */ 31 /** @defgroup og_gen_arith_bin Binary numbers */ 32 /** @defgroup og_gen_arith_dec Decimal numbers */ 33 /** @} */ 34 35 36 37 /** @name One byte opcodes. 38 * @{ 39 */ 40 41 /* 42 * Instruction specification format - work in progress: 43 * 44 * @opmnemonic add 45 * @op1 reg:Eb 46 * @op2 rm:Gb 47 * @oppfx none 48 * @opmaps none 49 * @opcode 0x00 50 * @openc ModR/M 51 * @opfltest none 52 * @opflmodify of,sz,zf,af,pf,cf 53 * @opflundef none 54 * @opflset none 55 * @opflclear none 56 * @ophints harmless 57 * @opstats add_Eb_Gb 58 * @optest in1=1 in2=1 -> out1=2 outfl=a?,p? 59 * @optest oppfx:o32 in1=0xfffffffe:dw in2=1:dw -> out1=0xffffffff:dw outfl=a?,p? 60 * 61 * @ingroup op_gen_arith_bin 62 */ 32 63 FNIEMOP_DEF(iemOp_add_Eb_Gb) 33 64 {
Note:
See TracChangeset
for help on using the changeset viewer.