diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-05-13 14:29:47 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-05-13 14:29:47 -0700 |
commit | 2c94c44f35f3406f64765fe1f78448788580fcaf (patch) | |
tree | 714f1ce146079c125d6a1aea2f4979170ecff12a /insns.h | |
parent | 0a4d23219ec3237e5ca54e9ff06a44cfdcd9581a (diff) | |
download | nasm-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.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 */ |