diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-11-19 22:31:33 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-11-19 22:31:33 +0100 |
commit | 5c0611b998e039c8547cfa3841da3567e13446a8 (patch) | |
tree | 3f1dc0a8371996426f99d395ad3f0fa9be503ea5 /asm/parse.h | |
parent | 1937e301b6cd185c8ce907b9184142e82e76fda4 (diff) |
Add assembler parser (WIP)
Diffstat (limited to 'asm/parse.h')
-rw-r--r-- | asm/parse.h | 3 |
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); |