2021年5月12日 星期三

HBLbits_Verilog Basic_Tb/and

 HBLbits_Verilog Basic_Tb/and

You are given the following AND gate you wish to test:

module andgate (
    input [1:0] in,
    output out
);

Write a testbench that instantiates this AND gate and tests all 4 input combinations, by generating the following timing diagram:

`timescale 1ps / 1ps
module top_module();
    reg [1:0]in;
    wire out;
    
    andgate u_andgate(
        .in     (in    ),
        .out (out   )
    );
    
    initial begin
        in = 2'b00;
        #10;
        in = 2'b01;
        #10;
        in = 2'b10;
        #10;
        in = 2'b11;
    end         
endmodule


沒有留言:

張貼留言

WOKWI ESP32 LED Control , Node-Red MQTT SQLITE  

WOKWI ESP32 LED Control ,  Node-Red  MQTT SQLITE   const char broker[] = "test.mosquitto.org" ; //const char broker[] = "br...