(1) - EDA Playground
Warning! This exercise has been opened in another tab; autosave has been disabled. Close this tab or refresh to reactivate.

 Languages & Libraries

 Tools & Simulators

 Examples

208


12
 
1
// Code your testbench here
2
// or browse Examples
3
module testbench();
4
  
5
  wire a;
6
  logic b;
7
  
8
  assign a = 1'b0;
9
    
10
    design design_inst(.*);
11
  
12
endmodule
xxxxxxxxxx
1
 
1
// Code your design here
2
module design(
3
  input logic a,
4
  output logic b
5
);
6
  
7
  assign b=a;
8
  
9
endmodule
35 views and 0 likes     
A short description will be helpful for you to remember your playground's details
 
100:0