summaryrefslogtreecommitdiffhomepage
path: root/asm/parse.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-11-18 17:55:27 +0100
committerRoland Reichwein <mail@reichwein.it>2020-11-18 17:55:27 +0100
commit031bfef600e7021c8bd72e2e663f368e7386b131 (patch)
tree4e724c3b13278e5c6fb90a9380d19dc1d253b4b3 /asm/parse.h
parent927eb99e75325164a541c2638e1e607294019381 (diff)
Added Asm ops
Diffstat (limited to 'asm/parse.h')
-rw-r--r--asm/parse.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/asm/parse.h b/asm/parse.h
new file mode 100644
index 0000000..1e6a202
--- /dev/null
+++ b/asm/parse.h
@@ -0,0 +1,8 @@
+#pragma once
+
+#include "asm/chunk.h"
+
+#include <memory>
+#include <string>
+
+std::shared_ptr<Chunk> parseAsm(const std::string& line);