mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-26 04:56:05 +00:00
Progress in presentation
This commit is contained in:
parent
9c29969bbc
commit
aeb36b0b8b
6 changed files with 74 additions and 3 deletions
6
manual/PRESENTATION_ExAdv/sym_mul_cells.v
Normal file
6
manual/PRESENTATION_ExAdv/sym_mul_cells.v
Normal file
|
@ -0,0 +1,6 @@
|
|||
module MYMUL(A, B, Y);
|
||||
parameter WIDTH = 1;
|
||||
input [WIDTH-1:0] A, B;
|
||||
output [WIDTH-1:0] Y;
|
||||
assign Y = A * B;
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue