Verilog Parser

A very simple hash table implemented (for now) over a linked list. More...

A very simple hash table implemented (for now) over a linked list.

This can be used for simple key-value pair storage. Current access time is O(n) for a table with N elements in it.

Warning
This is a terrible way to implement a hash table. It doesn't even do any hashing!
Todo:
Re-implement over a proper hash table structure.