summaryrefslogtreecommitdiff
path: root/emulator.h
diff options
context:
space:
mode:
Diffstat (limited to 'emulator.h')
-rw-r--r--emulator.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/emulator.h b/emulator.h
new file mode 100644
index 0000000..c47d4f5
--- /dev/null
+++ b/emulator.h
@@ -0,0 +1,12 @@
+
+#ifndef EMULATOR_H_
+#define EMULATOR_H_
+
+class emulator {
+private:
+ inst_loader loader;
+ vector<reg> temp_regs;
+ vector<reg> out_regs;
+};
+
+#endif //EMULATOR_H_