diff --git a/Processors/Decoders/PowerPC/PowerPC.hpp b/Processors/Decoders/PowerPC/PowerPC.hpp index 37d4ebb29..9b6613b6d 100644 --- a/Processors/Decoders/PowerPC/PowerPC.hpp +++ b/Processors/Decoders/PowerPC/PowerPC.hpp @@ -193,6 +193,11 @@ struct Instruction { uint32_t oe() { return opcode & 0x800; } }; +/*! + Implements PowerPC instruction decoding. + + This is an experimental implementation; it has not yet undergone significant testing. +*/ struct Decoder { public: Decoder(Model model);