Include data structures for assembler
diff --git a/as/hash.h b/as/hash.h
new file mode 100644
index 0000000..a1312cd
--- /dev/null
+++ b/as/hash.h
@@ -0,0 +1,9 @@
+#ifndef LIBASM_HASH_H
+#define LIBASM_HASH_H
+
+#include <stdint.h>
+
+uint32_t hash(char *str);
+
+
+#endif