Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by ragulto516

  1. R

    How to transfer a value of an output from DUT to test bench?

    Hi, Yes, apologies, I have instantiated the module incorrectly and here is the rewrite. module my_mod(a, b); input a; output b; assign b = a; endmodule module my_mod_tst(); reg x; wire y; reg z; my_mod mm(x, y); initial begin x = 1; z = y; if (z == 1)...
  2. R

    How to transfer a value of an output from DUT to test bench?

    Hi, Would like to ask how to transfer a value of an output from DUT to test bench? I have the following code: module my_mod(a, b); input a; output b; assign b = a; endmodule module my_mod_tst(); reg x; wire y; reg z; my_mod_tst mmt(x, y); initial...

Part and Inventory Search

Back
Top