mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-29 09:22:02 +00:00
28 lines
747 B
C++
28 lines
747 B
C++
/* SPDX-FileCopyrightText: © 2022-2023 Decompollaborate */
|
|
/* 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"
|
|
#include "instructions/InstructionR3000GTE.hpp"
|
|
#include "instructions/InstructionR5900.hpp"
|
|
|
|
#include "analysis/LoPairingInfo.hpp"
|
|
#include "analysis/RegistersTracker.hpp"
|
|
|
|
|
|
#endif
|