diff options
Diffstat (limited to 'nqasm.h')
-rw-r--r-- | nqasm.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +#ifndef NQ_NQASM_H +#define NQ_NQASM_H + +struct instruction { + int mnem; +}; + +void add_instruction(const struct instruction *); + +#endif + |