[HDL] Rename tech lib to be consistent with arch name changes
This commit is contained in:
parent
911979a731
commit
477a522885
|
@ -57,3 +57,16 @@ module dpram_1024x8 (
|
|||
|
||||
endmodule
|
||||
|
||||
//-----------------------------
|
||||
// 36-bit multiplier
|
||||
//-----------------------------
|
||||
module mult_36(
|
||||
input [35:0] A,
|
||||
input [35:0] B,
|
||||
output [71:0] Y
|
||||
);
|
||||
|
||||
assign Y = A * B;
|
||||
|
||||
endmodule
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
module mult_36x36 (
|
||||
input [35:0] A,
|
||||
input [35:0] B,
|
||||
output [71:0] Y
|
||||
);
|
||||
parameter A_SIGNED = 0;
|
||||
parameter B_SIGNED = 0;
|
||||
parameter A_WIDTH = 0;
|
||||
parameter B_WIDTH = 0;
|
||||
parameter Y_WIDTH = 0;
|
||||
|
||||
mult_36 #() _TECHMAP_REPLACE_ (
|
||||
.A (A),
|
||||
.B (B),
|
||||
.Y (Y) );
|
||||
|
||||
endmodule
|
Loading…
Reference in New Issue