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

15 lines
263 B
C++

#pragma once
#include <map>
#include <string>
#include "isa.hh"
#include "codec.hh"
#include "mneumonic.hh"
namespace fromstring {
const std::unordered_map<std::string_view, isa::op>& op();
const std::unordered_map<std::string_view, isa::mode>& mode();
}