summaryrefslogtreecommitdiffhomepage
path: root/asm/parse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'asm/parse.cpp')
-rw-r--r--asm/parse.cpp8
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
+}