mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-23 14:20:07 +00:00
16 lines
412 B
C++
16 lines
412 B
C++
#pragma once
|
|
|
|
/*!
|
|
* @file InstructionDecode.h
|
|
* The Instruction Decoder - converts a LinkedWord into a Instruction.
|
|
* This is the part of the disassembler that decodes MIPS instructions.
|
|
*/
|
|
#include "Instruction.h"
|
|
|
|
namespace decompiler {
|
|
class LinkedWord;
|
|
class LinkedObjectFile;
|
|
|
|
Instruction decode_instruction(LinkedWord& word, LinkedObjectFile& file, int seg_id, int word_id);
|
|
} // namespace decompiler
|