mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-28 15:17:59 +00:00
21 lines
358 B
C++
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
|