EightBit/Intel8080/inc/Disassembler.h
Adrian.Conlon 105032f08a Dump of all my C++ emulators, only Intel8080 integrated so far...
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
2017-06-04 21:38:34 +01:00

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);
};
}