You've already forked rabbitizer
mirror of
https://github.com/encounter/rabbitizer.git
synced 2026-03-30 11:35:30 -07: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
|