3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-05 04:15:42 +00:00

Renamed manual/FILES_* directories

This commit is contained in:
Clifford Wolf 2014-01-28 06:55:47 +01:00
parent 842ca2f011
commit 2cb47355d4
29 changed files with 9 additions and 9 deletions

View file

@ -0,0 +1,8 @@
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