mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-03 05:05:15 +00:00
211c75d84d
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
68 lines
1.5 KiB
C++
68 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <boost/format.hpp>
|
|
|
|
namespace EightBit {
|
|
|
|
class Z80;
|
|
|
|
class Disassembler {
|
|
public:
|
|
Disassembler();
|
|
|
|
static std::string state(Z80& cpu);
|
|
std::string disassemble(const Z80& cpu);
|
|
|
|
static std::string flag(uint8_t value, int flag, const std::string& represents);
|
|
static std::string flags(uint8_t value);
|
|
static std::string hex(uint8_t value);
|
|
static std::string hex(uint16_t value);
|
|
static std::string binary(uint8_t value);
|
|
static std::string decimal(uint8_t value);
|
|
|
|
static std::string invalid(uint8_t value);
|
|
|
|
private:
|
|
mutable boost::format m_formatter;
|
|
bool m_prefixCB;
|
|
bool m_prefixDD;
|
|
bool m_prefixED;
|
|
bool m_prefixFD;
|
|
|
|
void disassemble(std::ostringstream& output, const Z80& cpu, uint16_t pc);
|
|
|
|
void disassembleCB(
|
|
std::ostringstream& output,
|
|
const Z80& cpu,
|
|
uint16_t pc,
|
|
std::string& specification,
|
|
int& dumpCount,
|
|
int x, int y, int z,
|
|
int p, int q);
|
|
|
|
void disassembleED(
|
|
std::ostringstream& output,
|
|
const Z80& cpu,
|
|
uint16_t pc,
|
|
std::string& specification,
|
|
int& dumpCount,
|
|
int x, int y, int z,
|
|
int p, int q);
|
|
|
|
void disassembleOther(
|
|
std::ostringstream& output,
|
|
const Z80& cpu,
|
|
uint16_t pc,
|
|
std::string& specification,
|
|
int& dumpCount,
|
|
int x, int y, int z,
|
|
int p, int q);
|
|
|
|
std::string RP(int rp) const;
|
|
std::string RP2(int rp) const;
|
|
std::string R(int r) const;
|
|
static std::string cc(int flag);
|
|
static std::string alu(int which);
|
|
};
|
|
} |