Files
wassembly/include/execute/state.hpp

16 lines
311 B
C++

#pragma once
#include <string>
#include <unordered_map>
namespace Execute
{
struct State
{
unsigned currentStatement;
unsigned nextStatement;
std::unordered_map<std::string, unsigned> const & labelStatementIndice;
State(std::unordered_map<std::string, unsigned> const & labelStatementIndice);
};
}