mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-01-04 15:32:13 +00:00
105032f08a
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
21 lines
396 B
C++
21 lines
396 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace EightBit {
|
|
class Intel8080;
|
|
|
|
class Disassembler {
|
|
public:
|
|
Disassembler();
|
|
|
|
static std::string state(Intel8080& cpu);
|
|
static std::string disassemble(Intel8080& cpu);
|
|
|
|
static std::string hex(uint8_t value);
|
|
static std::string hex(uint16_t value);
|
|
static std::string binary(uint8_t value);
|
|
|
|
static std::string invalid(uint8_t value);
|
|
};
|
|
} |