diff options
author | Roland Reichwein <mail@reichwein.it> | 2024-08-31 18:29:58 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2024-08-31 18:29:58 +0200 |
commit | 02153da4d5954261f6649e2980bc88f6d29e45a6 (patch) | |
tree | 4cc1ce6d1124edf791e48fcdb28b33a614d1a358 /asm/arm/parse.h | |
parent | f8c4fe1614cc79df9f97c8a7754cf2a5aaf5063d (diff) |
ARM assembler (WIP)
Diffstat (limited to 'asm/arm/parse.h')
-rw-r--r-- | asm/arm/parse.h | 7 |
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); |