summaryrefslogtreecommitdiffhomepage
path: root/asm/arm/parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'asm/arm/parse.h')
-rw-r--r--asm/arm/parse.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/asm/arm/parse.h b/asm/arm/parse.h
new file mode 100644
index 0000000..4dce4b2
--- /dev/null
+++ b/asm/arm/parse.h
@@ -0,0 +1,7 @@
+#pragma once
+
+#include <vector>
+#include <string>
+
+// asm_code: multiline asm code
+std::vector<std::vector<std::string>> parseAsm(const std::string& asm_code);