summaryrefslogtreecommitdiffhomepage
path: root/asm/parse.h
diff options
context:
space:
mode:
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);