diff options
Diffstat (limited to 'manual/CHAPTER_StateOfTheArt/always01_pub.v')
-rw-r--r-- | manual/CHAPTER_StateOfTheArt/always01_pub.v | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/manual/CHAPTER_StateOfTheArt/always01_pub.v b/manual/CHAPTER_StateOfTheArt/always01_pub.v deleted file mode 100644 index 6a6a4b231..000000000 --- a/manual/CHAPTER_StateOfTheArt/always01_pub.v +++ /dev/null @@ -1,14 +0,0 @@ -module uut_always01(clock, - reset, count); - -input clock, reset; -output [3:0] count; -reg [3:0] count; - -always @(posedge clock) - count <= reset ? - 0 : count + 1; - - - -endmodule |