summaryrefslogtreecommitdiffhomepage
path: root/asm/parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'asm/parse.h')
-rw-r--r--asm/parse.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/asm/parse.h b/asm/parse.h
index 1e6a202..1b55f7f 100644
--- a/asm/parse.h
+++ b/asm/parse.h
@@ -5,4 +5,5 @@
#include <memory>
#include <string>
-std::shared_ptr<Chunk> parseAsm(const std::string& line);
+// asm_code: multiline asm code
+std::vector<std::shared_ptr<Chunk>> parseAsm(const std::string& asm_code);