Shyam Joe
Junior Member level 3
- Joined
- Aug 21, 2013
- Messages
- 28
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 322
Hi my program is left shifter.
when i'm using i got this error "Illegal left hand side of continuous assign"
following is my coding
Help me to solve dis
when i'm using i got this error "Illegal left hand side of continuous assign"
following is my coding
Code Verilog - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 module flp(v,u); input [255:0] u; output reg [255:0] v; integer i; assign v[0]=u[255]; initial begin for(i=1;i<=255;i=i+1) begin v[i]<=u[i-1]; end end endmodule
Help me to solve dis
Last edited by a moderator: