diff options
| author | Warrick Lo <wlo@warricklo.net> | 2026-05-19 19:42:10 -0700 |
|---|---|---|
| committer | Warrick Lo <wlo@warricklo.net> | 2026-05-19 19:42:10 -0700 |
| commit | 9edf80437af87f99243eefe945e3872385b494cc (patch) | |
| tree | b50876bccb644b13766e4a2ba719d61af7846230 /verif/formal/simple_alu/simple_alu_bind.sv | |
| parent | Tidy root directory [skip ci] (diff) | |
| parent | Pass linter (diff) | |
| download | montreal-9edf80437af87f99243eefe945e3872385b494cc.tar.xz montreal-9edf80437af87f99243eefe945e3872385b494cc.zip | |
Merge branch 'chat/simple-alu-formal-verif'
Add formal verification files for a simple ALU module.
Diffstat (limited to 'verif/formal/simple_alu/simple_alu_bind.sv')
| -rw-r--r-- | verif/formal/simple_alu/simple_alu_bind.sv | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/verif/formal/simple_alu/simple_alu_bind.sv b/verif/formal/simple_alu/simple_alu_bind.sv new file mode 100644 index 0000000..8ed7057 --- /dev/null +++ b/verif/formal/simple_alu/simple_alu_bind.sv @@ -0,0 +1,15 @@ +// Bind file for simple_alu formal verification. +// Attaches simple_alu_fv to every instance of simple_alu in the design. +// RTL is completely unaware of this file. +// +// bind <dut_module> <fv_module> <instance_name> (<port_connections>); + +bind simple_alu simple_alu_fv u_simple_alu_fv ( + .clk (clk), + .rst (rst), + .a (a), + .b (b), + .sel (sel), + .y (y), + .overflow (overflow) +); |