ac51_mul.v

来自「Verilog 8051 IP Core for Cyclone II」· Verilog 代码 · 共 27 行

V
27
字号
//// ac51_mul.v//// ac51 microcontroller core//// Version 0.6//// Copyright 2008, Hideyuki Abe. All rights reserved.// Distributed under the terms of the MIT License.//module ac51_mul(	ina,	inb,	out);input [7:0]	ina;input [7:0]	inb;output [15:0]	out;assign	out = ina * inb;endmodule// End of ac51_mul.v

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?