remove not needed top module

This commit is contained in:
Miodrag Milanovic 2019-10-04 09:41:45 +02:00
parent 1a399c6456
commit b2f0d75807
2 changed files with 2 additions and 20 deletions

View File

@ -52,22 +52,4 @@
endcase
end
endmodule
module top (
input clk,
input rst,
input a,
input b,
output g0,
output g1
);
fsm u_fsm ( .clock(clk),
.reset(rst),
.req_0(a),
.req_1(b),
.gnt_0(g0),
.gnt_1(g1));
endmodule

View File

@ -1,10 +1,10 @@
read_verilog fsm.v
hierarchy -top top
hierarchy -top fsm
proc
flatten
equiv_opt -assert -map +/xilinx/cells_sim.v synth_xilinx # equivalency check
design -load postopt # load the post-opt design (otherwise equiv_opt loads the pre-opt design)
cd top # Constrain all select calls below inside the top module
cd fsm # Constrain all select calls below inside the top module
select -assert-count 1 t:BUFG
select -assert-count 5 t:FDRE