mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2025-01-01 08:59:40 +00:00
13 lines
341 B
Plaintext
13 lines
341 B
Plaintext
|
/* SPDX-FileCopyrightText: © 2022 Decompollaborate */
|
||
|
/* SPDX-License-Identifier: MIT */
|
||
|
|
||
|
#define RABBITIZER_DEF_INSTR_CATEGORY(name) RABBITIZER_INSTRCAT_##name
|
||
|
|
||
|
typedef enum RabbitizerInstrCategory {
|
||
|
#include "InstrCategory.inc"
|
||
|
|
||
|
RABBITIZER_DEF_INSTR_CATEGORY(MAX),
|
||
|
} RabbitizerInstrCategory;
|
||
|
|
||
|
#undef RABBITIZER_DEF_INSTR_CATEGORY
|