mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-26 13:06:12 +00:00
Progress in presentation
This commit is contained in:
parent
4e43cb7317
commit
9351e4d3ca
4 changed files with 51 additions and 11 deletions
|
@ -7,9 +7,9 @@ parameter A_WIDTH = 1;
|
|||
parameter B_WIDTH = 1;
|
||||
parameter Y_WIDTH = 1;
|
||||
|
||||
input [A_WIDTH-1:0] A;
|
||||
input [B_WIDTH-1:0] B;
|
||||
output [Y_WIDTH-1:0] Y;
|
||||
input [24:0] A;
|
||||
input [17:0] B;
|
||||
output [47:0] Y;
|
||||
|
||||
wire [A_WIDTH-1:0] A_ORIG = A;
|
||||
wire [B_WIDTH-1:0] B_ORIG = B;
|
||||
|
@ -38,9 +38,9 @@ parameter A_WIDTH = 1;
|
|||
parameter B_WIDTH = 1;
|
||||
parameter Y_WIDTH = 1;
|
||||
|
||||
input [A_WIDTH-1:0] A;
|
||||
input [B_WIDTH-1:0] B;
|
||||
output [Y_WIDTH-1:0] Y;
|
||||
input [47:0] A;
|
||||
input [47:0] B;
|
||||
output [47:0] Y;
|
||||
|
||||
wire [A_WIDTH-1:0] A_ORIG = A;
|
||||
wire [B_WIDTH-1:0] B_ORIG = B;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue