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 agoThe same example is used in Cliff Cummings' Verilog courses (Sunburst Design). It's possible the poster grabbed the example from one of those courses.
For example, page 9-4 of the Expert Verilog-2001 course Rev. 200701 uses it. Jake