diff options
Diffstat (limited to 'tests/asicworld/code_tidbits_nonblocking.v')
-rw-r--r-- | tests/asicworld/code_tidbits_nonblocking.v | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/asicworld/code_tidbits_nonblocking.v b/tests/asicworld/code_tidbits_nonblocking.v new file mode 100644 index 000000000..4a0d365e0 --- /dev/null +++ b/tests/asicworld/code_tidbits_nonblocking.v @@ -0,0 +1,17 @@ +module nonblocking (clk,a,c); +input clk; +input a; +output c; + +wire clk; +wire a; +reg c; +reg b; + +always @ (posedge clk ) +begin + b <= a; + c <= b; +end + +endmodule |