Forum Discussion
Altera_Forum
Honored Contributor
17 years agoVerilog: Concept on Blocking assignment and always
i read an article about blocking assignment. module fbosc1 (y1, y2, clk, rst); output y1, y2; input clk, rst; reg y1, y2; always @(posedge clk or posedge rst) if (rst) y1 = 0; // r...
Altera_Forum
Honored Contributor
17 years agoIt is correct that the article i read is Cumming's SNUG-2000 paper nonblocking assignments in verilog synthesis, coding styles that kill!
Jakobjones, ur explaination helps me a lot,thanks