mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-28 15:17:59 +00:00
11 lines
333 B
Plaintext
11 lines
333 B
Plaintext
/* SPDX-FileCopyrightText: © 2022-2024 Decompollaborate */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#define RAB_DEF_OPERAND(prefix, operand) [RAB_OPERAND_##prefix##_##operand] = RabbitizerOperandType_process_##prefix##_##operand,
|
|
|
|
const OperandCallback instrOpercandCallbacks[] = {
|
|
#include "OperandTypes.inc"
|
|
};
|
|
|
|
#undef RAB_DEF_OPERAND
|