?? test_multiplier_top.v
字號:
//-------------------------------------------------------
// file test_multiplier_top
// module test_multiplier_top
// author : hejun
// software : model sim
// version : 1.0
//-------------------------------------------------------
`timescale 1ns/1ns
module test_multiplier_top;
reg [7:0] ain;
reg [7:0] bin;
reg clk;
wire [15:0] sout;
multiplier_top multiplier_top_1(
.x (ain),
.y (bin),
.z (sout)
);
initial
begin
clk = 0;
ain[7:0] = 8'b00101011;
bin[7:0] = 8'b00101011;
end
always
#16 clk = ~clk;
endmodule
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -