rabbitizer/cplusplus/include/instructions/InstrId.hpp
2022-12-16 15:37:46 -03:00

21 lines
347 B
C++

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