Files

19 lines
489 B
Plaintext
Raw Permalink Normal View History

2024-01-28 12:16:11 -03:00
/* SPDX-FileCopyrightText: © 2023-2024 Decompollaborate */
2023-04-30 17:39:05 -04:00
/* SPDX-License-Identifier: MIT */
from __future__ import annotations
from .Enum import Enum
#define RABBITIZER_DEF_REG(prefix, name, numeric, ...) \
name: Enum
#define RABBITIZER_DEF_REG_NODOLLAR(prefix, name, numeric, ...) \
RABBITIZER_DEF_REG(prefix, name, numeric, __VA_ARGS__)
class RegGprN32:
2023-05-02 19:01:54 -04:00
#include "registers/RabbitizerRegister_GprN32.inc"
2023-04-30 17:39:05 -04:00
#undef RABBITIZER_DEF_REG_NODOLLAR
#undef RABBITIZER_DEF_REG