Files
2023-04-12 22:04:03 +02:00

22 lines
361 B
C++

#ifndef WILD_OPCODE_LABEL_HPP_
#define WILD_OPCODE_LABEL_HPP_
#include <stdint.h>
typedef struct wild_opcode_label
{
wild_opcode_label(uint32_t address, uint32_t offset)
{
this->is_read = false;
this->address = address;
this->offset = offset;
}
bool is_read;
uint32_t address;
uint32_t offset;
} wild_opcode_label;
#endif