Altera_Forum
Honored Contributor
15 years agohelp! problem with a program
begin
state <=# 1 stop;
shift_start <=# 1 1'b1;
index <=# 1 index + 2'b01;
case (index)
2'b00: sig_num <=# 1 4'b1011;
2'b01: sig_num <=# 1 4'b1101;
2'b10: sig_num <=# 1 4'b1110;
2'b11: sig_num <=# 1 4'b0111;
endcase
end this segment program above have a doubt with me.when it runs ,if the index=00, the sig_num is 4'b0111; but i think it should be 4'b1011. can someone tells me why?