Files

29 lines
972 B
C
Raw Permalink Normal View History

2024-01-28 12:16:11 -03:00
/* SPDX-FileCopyrightText: © 2022-2024 Decompollaborate */
2022-09-26 11:15:28 -03:00
/* SPDX-License-Identifier: MIT */
#ifndef RABBITIZER_H
#define RABBITIZER_H
2022-10-09 17:51:47 -03:00
#pragma once
#include "common/Utils.h"
2022-09-26 11:15:28 -03:00
#include "common/RabbitizerVersion.h"
#include "common/RabbitizerConfig.h"
#include "instructions/RabbitizerOperandType.h"
#include "instructions/RabbitizerInstrId.h"
#include "instructions/RabbitizerInstrSuffix.h"
#include "instructions/RabbitizerInstrDescriptor.h"
#include "instructions/RabbitizerRegister.h"
2022-12-19 17:07:32 -03:00
#include "instructions/RabbitizerRegisterDescriptor.h"
#include "instructions/RabbitizerInstruction.h"
#include "instructions/RabbitizerInstructionRsp.h"
2023-04-29 23:07:07 -04:00
#include "instructions/RabbitizerInstructionR3000GTE.h"
2024-04-22 13:15:58 -04:00
#include "instructions/RabbitizerInstructionR4000Allegrex.h"
#include "instructions/RabbitizerInstructionR5900.h"
#include "analysis/RabbitizerTrackedRegisterState.h"
#include "analysis/RabbitizerLoPairingInfo.h"
#include "analysis/RabbitizerRegistersTracker.h"
#endif