Searched refs:testbench (Results 1 - 25 of 45) sorted by relevance

12

/gem5/src/systemc/tests/systemc/misc/user_guide/chpt7.1/
H A Dtestbench.h22 testbench.h --
38 /* Filename testbench.h */
39 /* This is the interface file for synchronous process `testbench' */
43 SC_MODULE( testbench )
45 SC_HAS_PROCESS( testbench );
50 testbench(sc_module_name NAME, function
H A Dmain.cpp40 #include "testbench.h"
46 testbench T("TB", clock);
/gem5/src/systemc/tests/systemc/misc/unit/control/timing/
H A Dtb.h42 SC_MODULE( testbench )
47 testbench ( sc_module_name NAME, function
H A Dtiming.cpp40 #include "tb.h" /** Definition of testbench Structure **/
45 testbench tb1("TB1", clk); // Testbench Instantiation
/gem5/src/systemc/tests/systemc/misc/unit/control/wait_until/
H A Dtb.h42 SC_MODULE( testbench )
48 testbench ( sc_module_name NAME, function
H A Dwaiting.cpp41 #include "tb.h" /** Definition of testbench Structure **/
47 testbench tb1("TB1", clk); // Testbench Instantiation
/gem5/src/systemc/tests/systemc/misc/sim_tests/biquad/biquad1/
H A Dtestbench.h22 testbench.h --
38 /* Filename testbench.h */
39 /* This is the interface file for synchronous process `testbench' */
43 SC_MODULE( testbench )
45 SC_HAS_PROCESS( testbench );
54 testbench( sc_module_name NAME, function
/gem5/src/systemc/tests/systemc/misc/sim_tests/biquad/biquad2/
H A Dtestbench.h22 testbench.h --
38 /* Filename testbench.h */
39 /* This is the interface file for synchronous process `testbench' */
43 SC_MODULE( testbench )
45 SC_HAS_PROCESS( testbench );
54 testbench( sc_module_name NAME, function
/gem5/src/systemc/tests/systemc/misc/sim_tests/biquad/biquad3/
H A Dtestbench.h22 testbench.h --
38 /* Filename testbench.h */
39 /* This is the interface file for synchronous process `testbench' */
43 SC_MODULE( testbench )
45 SC_HAS_PROCESS( testbench );
54 testbench( sc_module_name NAME, function
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt5.1/
H A Dtestbench.h22 testbench.h --
38 /* Filename testbench.h */
39 /* This is the interface file for synchronous process `testbench' */
43 SC_MODULE( testbench )
45 SC_HAS_PROCESS( testbench );
54 testbench(sc_module_name NAME, function
H A Dtestbench.cpp22 testbench.cpp --
38 /* Filename testbench.cc */
39 /* This is the implementation file for synchronous process `testbench' */
41 #include "testbench.h"
43 void testbench::entry()
/gem5/src/systemc/tests/systemc/misc/synth/add_chain/
H A Dadd_chain.cpp69 testbench tb1("TB1", clk ); // Testbench Instance
H A Dtb.h42 /* The testbench module has the following hierarchy: */
44 /* testbench */
50 struct testbench : public sc_module { struct in inherits:sc_module
62 testbench ( const sc_module_name& NAME, function in struct:testbench
/gem5/src/systemc/tests/systemc/misc/synth/add_chain_FUNC/
H A Dadd_chain_main.cpp58 #include "add_chain_tb.h" /** Definition of testbench Structure **/
64 testbench tb1("TB1", clk ); // Testbench Instance
H A Dadd_chain_tb.h42 /* The testbench module has the following hierarchy: */
44 /* testbench */
52 struct testbench : public sc_module { struct in inherits:sc_module
60 testbench ( const sc_module_name& NAME, function in struct:testbench
/gem5/src/systemc/tests/systemc/misc/unit/control/posedge/
H A Dposedge.cpp41 #include "tb.h" /** Definition of testbench Structure **/
49 testbench tb1("TB1", clk); // Testbench Instantiation
H A Dtb.h42 SC_MODULE( testbench )
49 testbench ( sc_module_name NAME, function
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt4.2/
H A Dtestbench.h22 testbench.h --
38 /* Filename testbench.h */
39 /* This is the interface file for module `testbench' */
43 struct testbench : public sc_module { struct in inherits:sc_module
48 testbench(sc_module_name NAME, function in struct:testbench
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt4.4/
H A Dtestbench.h22 testbench.h --
38 /* Filename testbench.h */
39 /* This is the interface file for module `testbench' */
43 struct testbench : public sc_module { struct in inherits:sc_module
48 testbench(sc_module_name NAME, function in struct:testbench
/gem5/src/systemc/tests/systemc/misc/sim_tests/srlatch/
H A Dtestbench.h22 testbench.h --
38 /* Filename testbench.h */
39 /* This is the interface file for synchronous process 'testbench' */
43 SC_MODULE( testbench )
45 SC_HAS_PROCESS( testbench );
55 testbench( sc_module_name NAME, function
/gem5/src/systemc/tests/systemc/misc/unit/structure/clocks/
H A Dclocks.cpp40 #include "tb.h" /** Definition of testbench Structure **/
48 testbench tb1("TB1", clk, clk2);
H A Dtb.h42 struct testbench : public sc_module struct in inherits:sc_module
54 testbench ( const sc_module_name& NAME, function in struct:testbench
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt4.3/
H A Dmain.cpp47 testbench tb1("TB1", clk, clk2);
/gem5/src/systemc/tests/systemc/misc/synth/synth-1.0/gcd/
H A Dgcd.cpp99 struct testbench : public sc_module { struct in inherits:sc_module
111 SC_HAS_PROCESS( testbench );
113 testbench( sc_module_name name ) function in struct:testbench
123 testbench::reset_gen()
136 testbench::stimu_gen()
147 testbench::display()
170 testbench tb("tb");
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt7.2/
H A Dtestbench.h22 testbench.h --
38 /* Filename testbench.h */
39 /* This is the interface file for synchronous process `testbench' */
43 SC_MODULE( testbench )
45 SC_HAS_PROCESS( testbench );
58 testbench(sc_module_name NAME, function

Completed in 17 milliseconds

12