Bugfix in simlib.v for iverilog

This commit is contained in:
Clifford Wolf 2014-07-29 19:23:31 +02:00
parent 77e2d39cd0
commit 2145e57ef0
1 changed files with 6 additions and 5 deletions

View File

@ -455,6 +455,7 @@ input [B_WIDTH-1:0] B;
output [Y_WIDTH-1:0] Y;
generate
if (Y_WIDTH > 0)
if (B_SIGNED) begin:BLOCK1
assign Y = A[$signed(B) +: Y_WIDTH];
end else begin:BLOCK2