diff options
author | KrystalDelusion <krystinedawn@yosyshq.com> | 2022-12-08 05:54:08 +1300 |
---|---|---|
committer | KrystalDelusion <krystinedawn@yosyshq.com> | 2022-12-08 05:54:08 +1300 |
commit | 1eec255e60f2854b4dd1fa212f02d57eb31c9f19 (patch) | |
tree | 9aae278e98bb5f210061c22bcf22d40854d98e8c /manual/CHAPTER_StateOfTheArt/always03.v | |
parent | 4b95fac13934a39525a934329648cf76e4b4f219 (diff) | |
download | yosys-1eec255e60f2854b4dd1fa212f02d57eb31c9f19.tar.gz yosys-1eec255e60f2854b4dd1fa212f02d57eb31c9f19.tar.bz2 yosys-1eec255e60f2854b4dd1fa212f02d57eb31c9f19.zip |
Removing manual files
Diffstat (limited to 'manual/CHAPTER_StateOfTheArt/always03.v')
-rw-r--r-- | manual/CHAPTER_StateOfTheArt/always03.v | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/manual/CHAPTER_StateOfTheArt/always03.v b/manual/CHAPTER_StateOfTheArt/always03.v deleted file mode 100644 index 53386acd6..000000000 --- a/manual/CHAPTER_StateOfTheArt/always03.v +++ /dev/null @@ -1,23 +0,0 @@ -module uut_always03(clock, in1, in2, in3, in4, in5, in6, in7, - out1, out2, out3); - -input clock, in1, in2, in3, in4, in5, in6, in7; -output out1, out2, out3; -reg out1, out2, out3; - -always @(posedge clock) begin - out1 = in1; - if (in2) - out1 = !out1; - out2 <= out1; - if (in3) - out2 <= out2; - if (in4) - if (in5) - out3 <= in6; - else - out3 <= in7; - out1 = out1 ^ out2; -end - -endmodule |