gmish27
Member level 1
- Joined
- May 12, 2011
- Messages
- 34
- Helped
- 3
- Reputation
- 6
- Reaction score
- 3
- Trophy points
- 1,288
- Activity points
- 1,553
what's wrong with the following code:
module test
(
input a,b,c,
output y
);
wire x;
assign y = a & x;
assign x = b & c;
endmodule
it synthesizes and simulates too but I read their will be a mis-match between the pre and post synthesis. care to explain???
module test
(
input a,b,c,
output y
);
wire x;
assign y = a & x;
assign x = b & c;
endmodule
it synthesizes and simulates too but I read their will be a mis-match between the pre and post synthesis. care to explain???