Files

31 lines
829 B
C++
Raw Permalink Normal View History

2024-01-28 12:16:11 -03:00
/* SPDX-FileCopyrightText: © 2022-2024 Decompollaborate */
2022-10-09 17:51:47 -03:00
/* SPDX-License-Identifier: MIT */
#ifndef RABBITIZER_HPP
#define RABBITIZER_HPP
#pragma once
#include "common/RabbitizerVersion.h"
#include "common/RabbitizerConfig.h"
2023-11-11 13:19:56 -03:00
#include "common/Utils.hpp"
2022-10-09 17:51:47 -03:00
#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 12:36:32 -04:00
#include "instructions/InstructionR3000GTE.hpp"
2024-04-22 13:15:58 -04:00
#include "instructions/InstructionR4000Allegrex.hpp"
2022-10-09 17:51:47 -03:00
#include "instructions/InstructionR5900.hpp"
#include "analysis/LoPairingInfo.hpp"
#include "analysis/RegistersTracker.hpp"
#endif