mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2025-01-01 08:59:40 +00:00
acee144578
* start making c++ bindings * Add sanity checks * add descriptor methods * setup making c++ library * cpp test * format (not tidy because it breaks everything and the result looks dumb) * Fixes * add missing alias * move stuff to their own files * InstructionRsp bindings * r5900 bindings * almost there * binding for analysis stuff * setters
21 lines
411 B
C++
21 lines
411 B
C++
/* SPDX-FileCopyrightText: © 2022 Decompollaborate */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef RABBITIZER_INSTRUCTION_CPU_HPP
|
|
#define RABBITIZER_INSTRUCTION_CPU_HPP
|
|
#pragma once
|
|
|
|
#include "InstructionBase.hpp"
|
|
|
|
|
|
namespace rabbitizer {
|
|
class InstructionCpu : public InstructionBase {
|
|
public:
|
|
InstructionCpu(uint32_t word, uint32_t vram);
|
|
virtual ~InstructionCpu();
|
|
};
|
|
};
|
|
|
|
|
|
#endif
|