File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
13
13
### Changed
14
14
15
15
### Fixed
16
+ - ` axi_id_remap ` : Improve compatibility with Verilator by excluding ` assert ` s for that tool.
16
17
- ` axi_lite_demux ` : Improve compatibility with VCS (issue #187 reported for ` axi_demux ` , which was
17
18
fixed in v0.29.2).
18
19
Original file line number Diff line number Diff line change @@ -378,7 +378,6 @@ module axi_id_remap #(
378
378
assert ($bits (mst_req_o.ar.id) == AxiMstPortIdWidth);
379
379
assert ($bits (mst_resp_i.r.id) == AxiMstPortIdWidth);
380
380
end
381
- `endif
382
381
default disable iff (! rst_ni);
383
382
assert property (@ (posedge clk_i) slv_req_i.aw_valid && slv_resp_o.aw_ready
384
383
| - > mst_req_o.aw_valid && mst_resp_i.aw_ready);
@@ -394,6 +393,7 @@ module axi_id_remap #(
394
393
| => mst_req_o.ar_valid && $stable (mst_req_o.ar.id));
395
394
assert property (@ (posedge clk_i) mst_req_o.aw_valid && ! mst_resp_i.aw_ready
396
395
| => mst_req_o.aw_valid && $stable (mst_req_o.aw.id));
396
+ `endif
397
397
// pragma translate_on
398
398
endmodule
399
399
You can’t perform that action at this time.
0 commit comments