📄 mult17x17_u.v
字号:
//
// Module: MULT17X17_U
//
// Description: Verilog Sub-module
// 17-bit X 17-bit embedded unsigned multiplier (asynchronous)
//
// Device: Virtex-II Family
//
// Copyright (c) 2000 Xilinx, Inc. All rights reserved.
//
////////////////////////////////////////////////////////////////////////////////////
//
/**************************************
Theory for 17x17 bit multiplier
using lsb inputs, outputs
[1'b0][a{16:0}]
x [1'b0][b{16:0}]
---------------------------------
*************************************/
module MULT17X17_U (A,B,P);
input [16:0] A;
input [16:0] B;
output [33:0] P;
wire [35:0] Product;
//
// Instantiation Section
//
MULT18X18 U_MULT17X17_U
(
.A ({1{1'b0}, A}) ,
.B ({1{1'b0}, B}) ,
.P (Product)
);
assign P = Product[33:0];
//
////////////////////////////////////////////////////////////////////////////////////
endmodule
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -