edastudy:vc_formal:user_check
差别
这里会显示出您选择的修订版和当前版本之间的差别。
| 后一修订版 | 前一修订版 | ||
| edastudy:vc_formal:user_check [2026/06/07 14:13] – 创建 user01 | edastudy:vc_formal:user_check [2026/06/07 14:19] (当前版本) – user01 | ||
|---|---|---|---|
| 行 1: | 行 1: | ||
| - | #### - user check #### | + | ==== - user check ==== |
| + | === - vc_check.tcl === | ||
| < | < | ||
| set search_path " | set search_path " | ||
| 行 15: | 行 16: | ||
| } | } | ||
| + | |||
| + | </ | ||
| + | |||
| + | === - output === | ||
| + | < | ||
| + | cell_name: core_0, ref_name: core, orig_ref_name: | ||
| + | cell_name: core_1, ref_name: core, orig_ref_name: | ||
| + | cell_name: core_2, ref_name: core_0000, orig_ref_name: | ||
| + | cell_name: core_3, ref_name: core_0001, orig_ref_name: | ||
| + | cell_name: out, ref_name: SEQ_FF, orig_ref_name: | ||
| + | cell_name: I_OR_N_1, ref_name: BITWISE_OR, orig_ref_name: | ||
| + | |||
| + | </ | ||
| + | |||
| + | === - file === | ||
| + | |||
| + | chip.v | ||
| + | |||
| + | < | ||
| + | module chip( | ||
| + | in, sel, clk, out | ||
| + | ); | ||
| + | |||
| + | input in, clk, sel; | ||
| + | output | ||
| + | |||
| + | reg out; | ||
| + | |||
| + | core core_0 ( | ||
| + | .in (in), | ||
| + | .clk (clk), | ||
| + | .sel (sel), | ||
| + | .out (out_0) | ||
| + | ); | ||
| + | |||
| + | core core_1 ( | ||
| + | .in | ||
| + | .clk (clk), | ||
| + | .sel (sel), | ||
| + | .out (out_1) | ||
| + | ); | ||
| + | |||
| + | core core_2 ( | ||
| + | .in (in), | ||
| + | .clk (clk), | ||
| + | .rst_n | ||
| + | .sel (sel), | ||
| + | .out (out_2) | ||
| + | ); | ||
| + | core core_3 ( | ||
| + | .in (in), | ||
| + | .clk (clk), | ||
| + | .rst2_n (1' | ||
| + | .sel (sel), | ||
| + | .out (out_2) | ||
| + | ); | ||
| + | |||
| + | always @(posedge clk) begin | ||
| + | out <= out_0 | out_1 | out_2; | ||
| + | end | ||
| + | |||
| + | endmodule | ||
| + | |||
| </ | </ | ||
edastudy/vc_formal/user_check.1780812803.txt.gz · 最后更改: 2026/06/07 14:13 由 user01