Changeset 35 for sources/test_regression/16112005
- Timestamp:
- Jun 29, 2009, 6:03:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sources/test_regression/16112005/system.cpp
r1 r35 1 #include "systemc.h"1 #include <systemc.h> 2 2 #include <iostream> 3 3 #include <string> … … 20 20 sc_in<int> i; 21 21 sc_out<int> o; 22 22 internal_model (sc_module_name n) : sc_module (n), 23 23 i("i"), 24 24 o("o") 25 25 { 26 26 } … … 31 31 sc_in<int> i1, i2, i3; 32 32 sc_out<int> o1, o2, o3; 33 33 sc_signal<int> r1, r2; 34 34 internal_model internal; 35 model (sc_module_name n) : sc_module (n), 35 36 model (sc_module_name n) : sc_module (n), 36 37 i1("i1"), i2("i2"), i3("i3"), 37 38 38 o1("o1"), o2("o2"), o3("o3"), 39 r1("r1"), r2("r2"), 39 40 internal ("internal") 40 41 {
Note: See TracChangeset
for help on using the changeset viewer.