mirror of
https://gitlab.com/kholdfuzion/goldeneye_src
synced 2026-08-24 07:00:15 -04:00
27 lines
694 B
C++
27 lines
694 B
C++
/* SPDX-FileCopyrightText: © 2022 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/InstructionR5900.hpp"
|
|
|
|
#include "analysis/LoPairingInfo.hpp"
|
|
#include "analysis/RegistersTracker.hpp"
|
|
|
|
|
|
#endif
|