Add seti and int operators

This commit is contained in:
2019-11-23 12:21:14 +01:00
parent f0e00ff018
commit 99f616e1e4
16 changed files with 153 additions and 66 deletions

View File

@@ -1,4 +1,5 @@
#pragma once
#include <execute/interrupts.hpp>
#include <string>
#include <unordered_map>
@@ -9,7 +10,7 @@ namespace Execute
unsigned currentStatement;
unsigned nextStatement;
std::unordered_map<std::string, unsigned> const & labelStatementIndice;
std::vector<InterruptFn> const interrupts;
State(std::unordered_map<std::string, unsigned> const & labelStatementIndice);
};