mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-29 09:22:02 +00:00
acee144578
* start making c++ bindings * Add sanity checks * add descriptor methods * setup making c++ library * cpp test * format (not tidy because it breaks everything and the result looks dumb) * Fixes * add missing alias * move stuff to their own files * InstructionRsp bindings * r5900 bindings * almost there * binding for analysis stuff * setters
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
|