2020年5月6日 星期三

以Verilog 設計一個數位電路 (EX1-6)--- CD4008

以Verilog 設計一個數位電路 (EX1-6)--- CD4008






`timescale 1 ns/1 ns
module ex6_CD4008( Ci ,A, B, S, Co);
input Ci;
input   [3:0]A,B;
output  [3:0]S;
output  Co;

assign {Co,S}=A+B+Ci;
   
endmodule

`timescale 100 ns/1 ns

module testbench;
/*
module ex6_CD4008( Ci ,A, B, S, Co);
input Ci;
input   [3:0]A,B;
output  [3:0]S;
output  Co;
*/
reg [3:0]A,B;
reg Ci;

wire [3:0]S;
wire Co;

integer i;
ex6_CD4008 UUT( Ci ,A, B, S, Co);

initial
begin
for (i=0;i<=15;i=i+1) begin
Ci=1'b0;
A=i;
B=i;
#20;
end
for (i=0;i<=15;i=i+1) begin
Ci=1'b1;
A=i;
B=i;
#20;
end
#20;  
$stop;
end
endmodule


沒有留言:

張貼留言

Messaging API作為替代方案

  LINE超好用功能要沒了!LINE Notify明年3月底終止服務,有什麼替代方案? LINE Notify將於2025年3月31日結束服務,官方建議改用Messaging API作為替代方案。 //CHANNEL_ACCESS_TOKEN = 'Messaging ...