2018-08-26 18:08:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "mc6809.h"
|
|
|
|
|
|
|
|
namespace EightBit {
|
|
|
|
class Disassembly {
|
|
|
|
public:
|
|
|
|
Disassembly(mc6809& processor);
|
|
|
|
|
2018-08-27 00:19:22 +00:00
|
|
|
std::string disassemble(uint16_t current);
|
2018-08-27 09:43:12 +00:00
|
|
|
std::string disassemble(register16_t current);
|
|
|
|
std::string disassemble();
|
|
|
|
|
|
|
|
std::string dumpState();
|
2018-08-26 18:08:07 +00:00
|
|
|
|
|
|
|
static std::string dump_Flags(uint8_t value);
|
|
|
|
static std::string dump_ByteValue(uint8_t value);
|
2018-08-27 00:19:22 +00:00
|
|
|
static std::string dump_RelativeValue(int8_t value);
|
2018-08-26 18:08:07 +00:00
|
|
|
static std::string dump_WordValue(uint16_t value);
|
2018-08-27 09:43:12 +00:00
|
|
|
static std::string dump_WordValue(register16_t value);
|
2018-08-27 00:19:22 +00:00
|
|
|
static std::string dump_RelativeValue(int16_t value);
|
2018-08-27 09:43:12 +00:00
|
|
|
static std::string dump_RelativeValue(register16_t value);
|
2018-08-26 18:08:07 +00:00
|
|
|
|
|
|
|
private:
|
2018-08-27 00:19:22 +00:00
|
|
|
mc6809& m_cpu;
|
2018-08-26 18:08:07 +00:00
|
|
|
|
|
|
|
mutable uint16_t m_address = 0xffff;
|
|
|
|
|
2018-08-27 00:19:22 +00:00
|
|
|
bool m_prefix10 = false;
|
|
|
|
bool m_prefix11 = false;
|
|
|
|
|
2018-08-26 18:08:07 +00:00
|
|
|
static void dump(std::ostream& out, int value, int width);
|
|
|
|
|
2018-08-27 00:19:22 +00:00
|
|
|
mc6809& CPU() { return m_cpu; }
|
|
|
|
|
|
|
|
uint8_t getByte(uint16_t address);
|
|
|
|
uint16_t getWord(uint16_t address);
|
|
|
|
|
|
|
|
std::string disassembleUnprefixed();
|
|
|
|
std::string disassemble10();
|
|
|
|
std::string disassemble11();
|
|
|
|
|
|
|
|
//
|
|
|
|
std::string RR(int which);
|
|
|
|
|
|
|
|
std::string Address_indexed(std::string mnemomic);
|
2018-08-26 18:08:07 +00:00
|
|
|
|
2018-08-27 10:29:15 +00:00
|
|
|
std::string AM_immediate_word(std::string mnemomic);
|
|
|
|
|
2018-08-27 00:19:22 +00:00
|
|
|
std::string dump_Byte(uint16_t address);
|
|
|
|
std::string dump_DByte(uint16_t address);
|
|
|
|
std::string dump_Word(uint16_t address);
|
2018-08-26 18:08:07 +00:00
|
|
|
};
|
|
|
|
}
|