mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-02 16:20:51 +00:00
Progress in presentation
This commit is contained in:
parent
0dadfed46d
commit
b0e84802ec
5 changed files with 207 additions and 0 deletions
91
manual/PRESENTATION_ExAdv/macc_xilinx_wrap_map.v
Normal file
91
manual/PRESENTATION_ExAdv/macc_xilinx_wrap_map.v
Normal file
|
@ -0,0 +1,91 @@
|
|||
|
||||
(* techmap_celltype = "$mul" *)
|
||||
module mul_wrap (A, B, Y);
|
||||
|
||||
parameter A_SIGNED = 0;
|
||||
parameter B_SIGNED = 0;
|
||||
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;
|
||||
|
||||
wire [24:0] A_25 = A;
|
||||
wire [17:0] B_18 = B;
|
||||
wire [47:0] Y_48;
|
||||
assign Y = Y_48;
|
||||
|
||||
wire [1023:0] _TECHMAP_DO_ = "proc; clean";
|
||||
|
||||
reg _TECHMAP_FAIL_;
|
||||
initial begin
|
||||
_TECHMAP_FAIL_ <= 0;
|
||||
if (A_SIGNED || B_SIGNED)
|
||||
_TECHMAP_FAIL_ <= 1;
|
||||
if (A_WIDTH < 4 || B_WIDTH < 4)
|
||||
_TECHMAP_FAIL_ <= 1;
|
||||
if (A_WIDTH > 25 || B_WIDTH > 18)
|
||||
_TECHMAP_FAIL_ <= 1;
|
||||
if (A_WIDTH*B_WIDTH < 100)
|
||||
_TECHMAP_FAIL_ <= 1;
|
||||
end
|
||||
|
||||
\$__mul_wrapper #(
|
||||
.A_SIGNED(A_SIGNED),
|
||||
.B_SIGNED(B_SIGNED),
|
||||
.A_WIDTH(A_WIDTH),
|
||||
.B_WIDTH(B_WIDTH),
|
||||
.Y_WIDTH(Y_WIDTH)
|
||||
) _TECHMAP_REPLACE_ (
|
||||
.A(A_25),
|
||||
.B(B_18),
|
||||
.Y(Y_48)
|
||||
);
|
||||
|
||||
endmodule
|
||||
|
||||
(* techmap_celltype = "$add" *)
|
||||
module add_wrap (A, B, Y);
|
||||
|
||||
parameter A_SIGNED = 0;
|
||||
parameter B_SIGNED = 0;
|
||||
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;
|
||||
|
||||
wire [47:0] A_48 = A;
|
||||
wire [47:0] B_48 = B;
|
||||
wire [47:0] Y_48;
|
||||
assign Y = Y_48;
|
||||
|
||||
wire [1023:0] _TECHMAP_DO_ = "proc; clean";
|
||||
|
||||
reg _TECHMAP_FAIL_;
|
||||
initial begin
|
||||
_TECHMAP_FAIL_ <= 0;
|
||||
if (A_SIGNED || B_SIGNED)
|
||||
_TECHMAP_FAIL_ <= 1;
|
||||
if (A_WIDTH < 10 && B_WIDTH < 10)
|
||||
_TECHMAP_FAIL_ <= 1;
|
||||
end
|
||||
|
||||
\$__add_wrapper #(
|
||||
.A_SIGNED(A_SIGNED),
|
||||
.B_SIGNED(B_SIGNED),
|
||||
.A_WIDTH(A_WIDTH),
|
||||
.B_WIDTH(B_WIDTH),
|
||||
.Y_WIDTH(Y_WIDTH)
|
||||
) _TECHMAP_REPLACE_ (
|
||||
.A(A_48),
|
||||
.B(B_48),
|
||||
.Y(Y_48)
|
||||
);
|
||||
|
||||
endmodule
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue