|
Last change
on this file since 58 was 55, checked in by meunier, 13 years ago |
|
Tried to clean the test_regression directory:
- Code formatting
- Supressed warnings
- Made comprehensible outputs
- Factorized Makefiles
There's still a lot to do (many tests don't pass for either good or bad reasons)
|
|
File size:
1.2 KB
|
| Rev | Line | |
|---|
| [55] | 1 |
|
|---|
| [1] | 2 | #include <iostream>
|
|---|
| 3 | #include <string>
|
|---|
| 4 |
|
|---|
| [55] | 5 | #include "systemc.h"
|
|---|
| 6 | #include "test.h"
|
|---|
| [1] | 7 |
|
|---|
| [55] | 8 |
|
|---|
| [1] | 9 | using namespace std;
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| [55] | 12 | struct internal_model : sc_module {
|
|---|
| 13 | sc_in<int> i;
|
|---|
| 14 | sc_out<int> o;
|
|---|
| 15 | internal_model (sc_module_name n) : sc_module (n), i("i"), o("o") {}
|
|---|
| [1] | 16 | };
|
|---|
| 17 |
|
|---|
| [35] | 18 |
|
|---|
| [55] | 19 | struct model : sc_module {
|
|---|
| 20 | sc_in<int> i1, i2, i3;
|
|---|
| 21 | sc_out<int> o1, o2, o3;
|
|---|
| 22 | sc_signal<int> r1, r2;
|
|---|
| 23 | internal_model internal;
|
|---|
| 24 |
|
|---|
| 25 | model(sc_module_name n) : sc_module(n),
|
|---|
| [1] | 26 | i1("i1"), i2("i2"), i3("i3"),
|
|---|
| [35] | 27 | o1("o1"), o2("o2"), o3("o3"),
|
|---|
| 28 | r1("r1"), r2("r2"),
|
|---|
| [1] | 29 | internal ("internal")
|
|---|
| [55] | 30 | {
|
|---|
| 31 | internal.o(o3);
|
|---|
| 32 | internal.i(i3);
|
|---|
| 33 | }
|
|---|
| [1] | 34 | };
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| [55] | 37 | int sc_main (int argc, char ** argv) {
|
|---|
| 38 | model m("m");
|
|---|
| 39 | sc_clock clk("clock");
|
|---|
| 40 | sc_signal<int> s1("s1"), s2("s2"), s3("s3"), s4("s4");
|
|---|
| [1] | 41 |
|
|---|
| [55] | 42 | m.i1 (s1);
|
|---|
| 43 | m.i2 (s1);
|
|---|
| 44 | m.i3 (s1);
|
|---|
| 45 | m.o1 (s4);
|
|---|
| 46 | m.o2 (s2);
|
|---|
| 47 | m.o3 (s3);
|
|---|
| [1] | 48 |
|
|---|
| [55] | 49 | sc_start(sc_time(0, sc_core::SC_NS));
|
|---|
| [1] | 50 |
|
|---|
| [55] | 51 | sc_start(sc_time(1, sc_core::SC_NS));
|
|---|
| 52 | sc_start(sc_time(10, sc_core::SC_NS));
|
|---|
| 53 |
|
|---|
| 54 | cout << "OK" << endl;
|
|---|
| 55 |
|
|---|
| 56 | return 0;
|
|---|
| [1] | 57 | }
|
|---|
| 58 |
|
|---|
| [55] | 59 |
|
|---|
| 60 | /*
|
|---|
| 61 | # Local Variables:
|
|---|
| 62 | # tab-width: 4;
|
|---|
| 63 | # c-basic-offset: 4;
|
|---|
| 64 | # c-file-offsets:((innamespace . 0)(inline-open . 0));
|
|---|
| 65 | # indent-tabs-mode: nil;
|
|---|
| 66 | # End:
|
|---|
| 67 | #
|
|---|
| 68 | # vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
|
|---|
| 69 | */
|
|---|
| 70 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.