mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2025-01-01 08:59:40 +00:00
21 lines
347 B
C++
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
|