3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-19 09:40:21 +00:00

presentation progress

This commit is contained in:
Clifford Wolf 2014-02-04 16:51:12 +01:00
parent 7a5f378bae
commit 03d63dd861
9 changed files with 206 additions and 3 deletions

View file

@ -0,0 +1,4 @@
module test(input [31:0] a, b,
output [31:0] y);
assign y = a + b;
endmodule