jak-project/decompiler/Disasm/InstructionDecode.h

20 lines
467 B
C
Raw Normal View History

#pragma once
2020-08-22 23:30:17 -04:00
/*!
* @file InstructionDecode.h
* The Instruction Decoder - converts a LinkedWord into a Instruction.
* This is the part of the disassembler that decodes MIPS instructions.
*/
#ifndef NEXT_INSTRUCTIONDECODE_H
#define NEXT_INSTRUCTIONDECODE_H
#include "Instruction.h"
class LinkedWord;
class LinkedObjectFile;
Instruction decode_instruction(LinkedWord& word, LinkedObjectFile& file, int seg_id, int word_id);
#endif // NEXT_INSTRUCTIONDECODE_H