#ifndef DECODER_H #define DECODER_H #include "proc.h" #include "../common/opcode.h" void Proc_decodeInstruction(proc_t *proc, opcode_t *op, opcode_data_t *instruction); void Proc_decodeInstructionExt(proc_t *proc, opcode_ext_t *op, opcode_data_t *instruction); #endif