Phasor 3.3.0
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{
8
9std::string opCodeToString(OpCode op);
10
11OpCode stringToOpCode(const std::string &str);
12
13} // namespace Phasor
The Phasor Programming Language and Runtime.
Definition AST.hpp:12
OpCode
Definition ISA.hpp:12
OpCode stringToOpCode(const std::string &str)
Definition map.cpp:135
std::string opCodeToString(OpCode op)
Definition map.cpp:125