diff options
Diffstat (limited to 'nqasm.h')
-rw-r--r-- | nqasm.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,9 +1,14 @@ #ifndef NQ_NQASM_H #define NQ_NQASM_H +#define ARG_INTEGER 0 +#define ARG_LABEL 1 + struct argument { + int type; union { - int value; + long value; + char *label; }; }; |