summaryrefslogtreecommitdiff
path: root/nqasm.h
diff options
context:
space:
mode:
authorBobby Bingham <koorogi@koorogi.info>2017-01-12 20:05:45 -0600
committerBobby Bingham <koorogi@koorogi.info>2017-01-15 23:18:52 -0600
commitcf366387449dcf9d34875a7d76f3b79c1e231d6f (patch)
treeb892febf08e3c5791e414c9cdc011477a9420ae1 /nqasm.h
parent239ee7648658b77b217f5c8142ef887612516af4 (diff)
nqasm: Initial stab at a lexer and parser
So far, this only understands instructions, but no operands or labels. It doesn't handle bad input gracefully. It's just enough to test the basics.
Diffstat (limited to 'nqasm.h')
-rw-r--r--nqasm.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/nqasm.h b/nqasm.h
new file mode 100644
index 0000000..3712849
--- /dev/null
+++ b/nqasm.h
@@ -0,0 +1,11 @@
+#ifndef NQ_NQASM_H
+#define NQ_NQASM_H
+
+struct instruction {
+ int mnem;
+};
+
+void add_instruction(const struct instruction *);
+
+#endif
+