📄 multiply8x8.v
字号:
module Multiply8x8 (op1, op2, res, clk);/* 8-Bit multiplier */input [7:0] op1, op2;output [15:0] res;input clk;wire [15:0] res_tmp;reg [15:0] res;always @(posedge clk) begin res = res_tmp;endassign res_tmp = op1 * op2;endmodule
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -