summaryrefslogtreecommitdiff
path: root/insns.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-05-13 14:29:47 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-05-13 14:29:47 -0700
commit2c94c44f35f3406f64765fe1f78448788580fcaf (patch)
tree714f1ce146079c125d6a1aea2f4979170ecff12a /insns.h
parent0a4d23219ec3237e5ca54e9ff06a44cfdcd9581a (diff)
downloadnasm-2c94c44f35f3406f64765fe1f78448788580fcaf.tar.gz
nasm-2c94c44f35f3406f64765fe1f78448788580fcaf.tar.bz2
nasm-2c94c44f35f3406f64765fe1f78448788580fcaf.zip
Make insnsb.c an actual compilation unit
"make alldeps" doesn't really like it when included files end in *.c. Instead of renaming insnsb.c to insnsb.h, make it an actual compilation unit, since there really isn't any reason for it not to be.
Diffstat (limited to 'insns.h')
-rw-r--r--insns.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/insns.h b/insns.h
index 49cdc8c..474e715 100644
--- a/insns.h
+++ b/insns.h
@@ -33,6 +33,9 @@ struct disasm_index {
extern const struct itemplate * const nasm_instructions[];
extern const struct disasm_index itable[256];
+/* Common table for the byte codes */
+extern const uint8_t nasm_bytecodes[];
+
/*
* this define is used to signify the end of an itemplate
*/