Phasor 3.1.1
Stack VM based Programming Language
Loading...
Searching...
No Matches
map.hpp
Go to the documentation of this file.
1#include "ISA.hpp"
2#include <unordered_map>
3#include <string>
4#include <stdexcept>
5
6namespace Phasor {
7
8std::string opCodeToString(OpCode op);
9
10OpCode stringToOpCode(const std::string &str);
11
12} // namespace Phasor
The Phasor Programming Language and Runtime.
Definition AST.hpp:11
OpCode
Definition ISA.hpp:12
OpCode stringToOpCode(const std::string &str)
Definition map.cpp:136
std::string opCodeToString(OpCode op)
Definition map.cpp:126