Altera_Forum
Honored Contributor
16 years agoStoring value in a reg
input [11:0] stimulus; reg val; always @(posedge clk) val <=# 1 |(stimulus); what should be the value stored in the register val? Is it the same as saying val = val | stimu...