diff options
Diffstat (limited to 'nqasm.h')
-rw-r--r-- | nqasm.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,8 +1,19 @@ #ifndef NQ_NQASM_H #define NQ_NQASM_H +struct argument { + union { + int value; + }; +}; + +struct arguments { + struct argument args[3]; +}; + struct instruction { int mnem; + struct arguments args; }; void add_instruction(const struct instruction *); |