71d70
<
72a72,74
> // Decoder state
> Bitfield<63, 62> decoderFault; // See DecoderFault
>
628a631,640
> /**
> * Instruction decoder fault codes in ExtMachInst.
> */
> enum DecoderFault : std::uint8_t {
> OK = 0x0, ///< No fault
> UNALIGNED = 0x1, ///< Unaligned instruction fault
>
> PANIC = 0x3, ///< Internal gem5 error
> };
>