blob: b12e0ebe96db2d675c12889dbbb031ab8d276389 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
);
|