11 lines
228 B
C++
11 lines
228 B
C++
#include <map>
|
|
#include <string>
|
|
|
|
#include "codec.hh"
|
|
#include "mneumonic.hh"
|
|
|
|
namespace tostring {
|
|
const std::unordered_map<isa::op, std::string_view>& op();
|
|
const std::unordered_map<isa::mode, std::string_view>& mode();
|
|
}
|