rabbitizer/cplusplus/include/instructions/InstrId.hpp
2024-01-28 12:16:11 -03:00

21 lines
358 B
C++

/* SPDX-FileCopyrightText: © 2022-2024 Decompollaborate */
/* SPDX-License-Identifier: MIT */
#ifndef RABBITIZER_INSTRID_HPP
#define RABBITIZER_INSTRID_HPP
#pragma once
#include <string>
namespace rabbitizer {
namespace InstrId {
#include "generated/UniqueId_enum_class.hpp"
std::string getOpcodeName(UniqueId uniqueId);
};
};
#endif