blob: fde8fb8f2da5a1ea464e20d5914bd4eca9d502b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <stdint.h>
#include <stdio.h>
#include "utils.hpp"
#include "instructions.hpp"
class Disasm
{
public:
static int disassemble(const uint8_t* buffer, uint32_t pos, uint32_t offset);
};
|