diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2023-01-02 16:07:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-02 16:07:36 +0100 |
commit | 257b41cd1fc3f5ce73fd111e7014150f46af833c (patch) | |
tree | 33aedbe2ca1f0420b182a7dea8606078044902b4 /manual/CHAPTER_Prog/test.v | |
parent | 3ebc50dee4007f8cca4ffc0e850bc3e86f7641f4 (diff) | |
parent | f2a4e5f1a077e7980598114adf33951132e60785 (diff) | |
download | yosys-257b41cd1fc3f5ce73fd111e7014150f46af833c.tar.gz yosys-257b41cd1fc3f5ce73fd111e7014150f46af833c.tar.bz2 yosys-257b41cd1fc3f5ce73fd111e7014150f46af833c.zip |
Merge pull request #3577 from KrystalDelusion/deprecate_manual
Deprecate manual
Diffstat (limited to 'manual/CHAPTER_Prog/test.v')
-rw-r--r-- | manual/CHAPTER_Prog/test.v | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/manual/CHAPTER_Prog/test.v b/manual/CHAPTER_Prog/test.v deleted file mode 100644 index 201f75006..000000000 --- a/manual/CHAPTER_Prog/test.v +++ /dev/null @@ -1,8 +0,0 @@ -module uut(in1, in2, in3, out1, out2); - -input [8:0] in1, in2, in3; -output [8:0] out1, out2; - -assign out1 = in1 + in2 + (in3 >> 4); - -endmodule |