mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-12 14:31:30 +00:00
14 lines
232 B
C++
14 lines
232 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <functional>
|
|
|
|
namespace EightBit {
|
|
|
|
typedef std::function<std::string(uint16_t current)> dumper_t;
|
|
|
|
struct AddressingModeDumper {
|
|
dumper_t byteDumper;
|
|
dumper_t disassemblyDumper;
|
|
};
|
|
} |