mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-28 06:19:43 +00:00
21 lines
416 B
C++
21 lines
416 B
C++
/* SPDX-FileCopyrightText: © 2022-2024 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
|