6502-asm/tostring.hh
2022-03-20 15:50:14 -07:00

12 lines
232 B
C++

#include <map>
#include <string>
#include "codec.hh"
#include "mneumonic.hh"
namespace tostring {
extern const std::unordered_map<op_t, std::string_view> op;
extern const std::unordered_map<amode_t, std::string_view> mode;
}