diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 20:51:53 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 20:51:53 +0000 |
commit | ea8382740dbe5e1607742d0a7c7c139dffcc5ae5 (patch) | |
tree | 33c24832ff4c4ff20f6fa8d98a894f599933152f /nasm.h | |
parent | ea6e34db64c7da7cb885197316c6b5e7d048bdb9 (diff) | |
download | nasm-0.93.tar.gz |
NASM 0.93nasm-0.93
Diffstat (limited to 'nasm.h')
-rw-r--r-- | nasm.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -12,8 +12,8 @@ #define NASM_H #define NASM_MAJOR_VER 0 -#define NASM_MINOR_VER 91 -#define NASM_VER "0.91" +#define NASM_MINOR_VER 93 +#define NASM_VER "0.93" #ifndef NULL #define NULL 0 @@ -268,6 +268,7 @@ typedef struct { /* an instruction itself */ operand oprs[3]; /* the operands, defined as above */ extop *eops; /* extended operands */ int times; /* repeat count (TIMES prefix) */ + int forw_ref; /* is there a forward reference? */ } insn; /* |