mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2025-02-11 09:40:31 +00:00
* initial gte setup * starting to parse gte instructions * R3000_GTE -> R3000GTE * decode all the non-operand instructions * remove printfs, whoops * decode gte with operands * cleanups * bindings stuffs * RabbitizerInstrId_isValid * fix missing include
18 lines
438 B
C
Generated
18 lines
438 B
C
Generated
/* SPDX-FileCopyrightText: © 2022 Decompollaborate */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
/* Automatically generated. DO NOT MODIFY */
|
|
|
|
#ifndef InstrCategory_enum_table_h_automatic
|
|
#define InstrCategory_enum_table_h_automatic
|
|
|
|
typedef enum RabbitizerInstrCategory {
|
|
RABBITIZER_INSTRCAT_CPU,
|
|
RABBITIZER_INSTRCAT_RSP,
|
|
RABBITIZER_INSTRCAT_R3000GTE,
|
|
RABBITIZER_INSTRCAT_R5900,
|
|
RABBITIZER_INSTRCAT_MAX,
|
|
} RabbitizerInstrCategory;
|
|
|
|
#endif
|