mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-02 21:46:07 +00:00
[core] add rf techlibs
This commit is contained in:
parent
54f8505045
commit
d7cf53d86a
49 changed files with 34443 additions and 0 deletions
17
techlibs/rapidflex/alkaidL/dsp_map.v
Normal file
17
techlibs/rapidflex/alkaidL/dsp_map.v
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
module mult_14x10_map (
|
||||
input [0:13] A,
|
||||
input [0:9] B,
|
||||
output [0:23] Y
|
||||
);
|
||||
parameter A_SIGNED = 0;
|
||||
parameter B_SIGNED = 0;
|
||||
parameter A_WIDTH = 0;
|
||||
parameter B_WIDTH = 0;
|
||||
parameter Y_WIDTH = 0;
|
||||
|
||||
mult_14x10 #() _TECHMAP_REPLACE_ (
|
||||
.A (A),
|
||||
.B (B),
|
||||
.Y (Y) );
|
||||
|
||||
endmodule
|
||||
Loading…
Add table
Add a link
Reference in a new issue