diff options
Diffstat (limited to 'manual/FILES_StateOfTheArt/always02_pub.v')
-rw-r--r-- | manual/FILES_StateOfTheArt/always02_pub.v | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/manual/FILES_StateOfTheArt/always02_pub.v b/manual/FILES_StateOfTheArt/always02_pub.v deleted file mode 100644 index 91f1ca16d..000000000 --- a/manual/FILES_StateOfTheArt/always02_pub.v +++ /dev/null @@ -1,14 +0,0 @@ -module uut_always02(clock, - reset, count); - -input clock, reset; -output [3:0] count; -reg [3:0] count; - -always @(posedge clock) begin - count <= count + 1; - if (reset) - count <= 0; -end - -endmodule |