summaryrefslogtreecommitdiff
path: root/nasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'nasm.h')
-rw-r--r--nasm.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/nasm.h b/nasm.h
index 4db1c29..8f4f293 100644
--- a/nasm.h
+++ b/nasm.h
@@ -11,6 +11,7 @@
#ifndef NASM_NASM_H
#define NASM_NASM_H
+#include <stdio.h>
#include "version.h" /* generated NASM version macros */
#ifndef NULL
@@ -432,16 +433,6 @@ enum {
/* Register names automatically generated from regs.dat */
#include "regs.h"
-/* Instruction names automatically generated from insns.dat */
-#include "insnsi.h"
-
-/* max length of any instruction, register name etc. */
-#if MAX_INSLEN > 9
-#define MAX_KEYWORD MAX_INSLEN
-#else
-#define MAX_KEYWORD 9
-#endif
-
enum { /* condition code names */
C_A, C_AE, C_B, C_BE, C_C, C_E, C_G, C_GE, C_L, C_LE, C_NA, C_NAE,
C_NB, C_NBE, C_NC, C_NE, C_NG, C_NGE, C_NL, C_NLE, C_NO, C_NP,