Forum Discussion

QRobi's avatar
QRobi
Icon for New Contributor rankNew Contributor
6 years ago

Please Help!!!! I am receiving the error "error (suppressible): (vsim-3601) Iteration limit 5000 reached at time 6 us". My code is as given below . I am trying to make ALU multiplier.

module mrl(a,b,res,rs); input [3:0]a; input [3:0]b; output [5:0]res; output rs; reg overflow; reg [2:0]r; reg [1:0]sum; reg [2:0]cb; reg [1:0]carry; integer ii; always @(a[1] || a[2] || a[...