diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-11-18 17:55:27 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-11-18 17:55:27 +0100 |
commit | 031bfef600e7021c8bd72e2e663f368e7386b131 (patch) | |
tree | 4e724c3b13278e5c6fb90a9380d19dc1d253b4b3 /asm/parse.cpp | |
parent | 927eb99e75325164a541c2638e1e607294019381 (diff) |
Added Asm ops
Diffstat (limited to 'asm/parse.cpp')
-rw-r--r-- | asm/parse.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/asm/parse.cpp b/asm/parse.cpp new file mode 100644 index 0000000..350d86e --- /dev/null +++ b/asm/parse.cpp @@ -0,0 +1,8 @@ +#include "parse.h" + +#include "asm/assembler.h" + +std::shared_ptr<Chunk> parseAsm(const std::string& line) +{ + return makeOp("lahf"); // TODO +} |