Use a larger hash table size

Increases compilation speed of files with a large number of macros by
around 20x.
diff --git a/modules/preprocs/nasm/nasm-pp.c b/modules/preprocs/nasm/nasm-pp.c
index 06eaa9a..27a8cc6 100644
--- a/modules/preprocs/nasm/nasm-pp.c
+++ b/modules/preprocs/nasm/nasm-pp.c
@@ -366,7 +366,7 @@
  * FIXME: We should *really* be able to configure this at run time,
  * or even have the hash table automatically expanding when necessary.
  */
-#define NHASH 31
+#define NHASH 4096
 
 /*
  * The current set of multi-line macros we have defined.