Altera_Forum
Honored Contributor
7 years agoPISO reg issue
Hello there. I am trying to implement PISO register with this code (dout and tmp are regs)
always @(posedge sclk)
begin
if (cs == 0)
begin
dout <= tmp;
...