2023-04-30 16:36:32 +00:00
|
|
|
/* SPDX-FileCopyrightText: © 2022-2023 Decompollaborate */
|
2022-10-09 20:51:47 +00:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
|
|
|
|
#ifndef RABBITIZER_HPP
|
|
|
|
#define RABBITIZER_HPP
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
#include "common/RabbitizerVersion.h"
|
|
|
|
#include "common/RabbitizerConfig.h"
|
|
|
|
|
|
|
|
#include "instructions/OperandType.hpp"
|
|
|
|
#include "instructions/InstrId.hpp"
|
|
|
|
//#include "instructions/InstrSuffix.hpp"
|
|
|
|
//#include "instructions/InstrDescriptor.hpp"
|
|
|
|
#include "instructions/Registers.hpp"
|
|
|
|
#include "instructions/InstructionBase.hpp"
|
|
|
|
#include "instructions/InstructionCpu.hpp"
|
|
|
|
#include "instructions/InstructionRsp.hpp"
|
2023-04-30 16:36:32 +00:00
|
|
|
#include "instructions/InstructionR3000GTE.hpp"
|
2022-10-09 20:51:47 +00:00
|
|
|
#include "instructions/InstructionR5900.hpp"
|
|
|
|
|
|
|
|
#include "analysis/LoPairingInfo.hpp"
|
|
|
|
#include "analysis/RegistersTracker.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|