A structural verilog reader & writer.
git clone https://github.com/arn4ud/libverilog.git
cd libverilog # Main directory of the cloned repository.
mkdir build # Create a directory to hold the build output.
cd build
cmake .. # Generate makefiles
make
libverilog is licensed under the terms of the Apache license. See LICENSE for more information.
To keep the source consistent, readable, diffable and easy to merge, all code is expected to conform to the C++ Core Guidelines.
Use CamelCase for type names, UPPER_CASE for macros, and snake_case for everyhting else.
#ifndef FOO_BAR_H_
#define FOO_BAR_H_
namespace foo {
class Bar {
public:
void do_something();
};
} // namespace foo
#endif /* FOO_BAR_H_ */