Skip to content

Commit

Permalink
axi_cut, axi_multicut: Remove VCS guards
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaskurth committed Dec 19, 2019
1 parent eebe396 commit 08a6e40
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions src/axi_cut.sv
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ module axi_cut_intf #(
// Check the invariants.
// pragma translate_off
`ifndef VERILATOR
`ifndef VCS
`ifndef SYNTHESIS
initial begin
assert ( ADDR_WIDTH > 0 ) else $fatal(1, "Wrong addr width parameter");
Expand All @@ -194,7 +193,6 @@ module axi_cut_intf #(
end
`endif
`endif
`endif
// pragma translate_on
endmodule

Expand Down Expand Up @@ -248,7 +246,6 @@ module axi_lite_cut_intf #(
// Check the invariants.
// pragma translate_off
`ifndef VERILATOR
`ifndef VCS
`ifndef SYNTHESIS
initial begin
assert ( ADDR_WIDTH > 0) else $fatal(1, "Wrong addr width parameter");
Expand All @@ -260,6 +257,5 @@ module axi_lite_cut_intf #(
end
`endif
`endif
`endif
// pragma translate_on
endmodule
6 changes: 0 additions & 6 deletions src/axi_multicut.sv
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,12 @@ module axi_multicut #(
// Check the invariants
// pragma translate_off
`ifndef VERILATOR
`ifndef VCS
`ifndef SYNTHESIS
initial begin
assert(NoCuts >= 0);
end
`endif
`endif
`endif
// pragma translate_on
endmodule

Expand Down Expand Up @@ -151,7 +149,6 @@ module axi_multicut_intf #(
// Check the invariants.
// pragma translate_off
`ifndef VERILATOR
`ifndef VCS
`ifndef SYNTHESIS
initial begin
assert ( ADDR_WIDTH > 0 ) else $fatal(1, "Wrong addr width parameter");
Expand All @@ -169,7 +166,6 @@ module axi_multicut_intf #(
end
`endif
`endif
`endif
// pragma translate_on
endmodule

Expand Down Expand Up @@ -229,7 +225,6 @@ module axi_lite_multicut_intf #(
// Check the invariants.
// pragma translate_off
`ifndef VERILATOR
`ifndef VCS
`ifndef SYNTHESIS
initial begin
assert ( ADDR_WIDTH > 0 ) else $fatal(1, "Wrong addr width parameter");
Expand All @@ -241,6 +236,5 @@ module axi_lite_multicut_intf #(
end
`endif
`endif
`endif
// pragma translate_on
endmodule

0 comments on commit 08a6e40

Please sign in to comment.