2021年5月11日 星期二

HBLbits_Verilog Basic_Tb/tb1

 HBLbits_Verilog Basic_Tb/tb1

Create a Verilog testbench that will produce the following waveform for outputs A and B:


`timescale 1ps / 1ps

module top_module ( output reg A, output reg B );//
    // generate input patterns here
    initial begin
        A=0;B=0;
        #10 A=1; //A=1,B=0;
        #5 B=1;  //A=1 B=1;
        #5 A=0;
        #20 B=0;
    end
endmodule

沒有留言:

張貼留言

113 學年度第 1 學期 RFID應用課程 Arduino程式

113 學年度第 1 學期 RFID應用課程 Arduino程式 https://www.mediafire.com/file/zr0h0p3iosq12jw/MFRC522+(2).7z/file 內含修改過後的 MFRC522 程式庫 (原程式有錯誤) //定義MFRC522...