summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining')
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/common.h45
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/display.cpp58
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/display.h69
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/golden/inlining.log67
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.cpp96
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.f4
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.h93
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/main.cpp92
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/stimulus.cpp71
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/stimulus.h78
10 files changed, 673 insertions, 0 deletions
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/common.h b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/common.h
new file mode 100644
index 000000000..2a4edbad5
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/common.h
@@ -0,0 +1,45 @@
+/*****************************************************************************
+
+ Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
+ more contributor license agreements. See the NOTICE file distributed
+ with this work for additional information regarding copyright ownership.
+ Accellera licenses this file to you under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with the
+ License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied. See the License for the specific language governing
+ permissions and limitations under the License.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ common.h --
+
+ Original Author: Martin Janssen, Synopsys, Inc., 2002-02-15
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+#ifndef COMMON_H
+#define COMMON_H
+
+#include "systemc.h"
+
+typedef sc_signal<sc_bv<4> > sc_signal_bool_vector;
+
+#endif
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/display.cpp b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/display.cpp
new file mode 100644
index 000000000..b0ac27b0c
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/display.cpp
@@ -0,0 +1,58 @@
+/*****************************************************************************
+
+ Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
+ more contributor license agreements. See the NOTICE file distributed
+ with this work for additional information regarding copyright ownership.
+ Accellera licenses this file to you under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with the
+ License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied. See the License for the specific language governing
+ permissions and limitations under the License.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ display.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "display.h"
+
+void display::entry(){
+ int i = 0;
+
+ wait(2);
+ while(1) {
+ // Reading Data, and Counter i,j is counted up.
+ while (in_valid.read()==false) wait();
+ cout << "Display : " << in_data1.read() << " "
+ << in_data2.read() << " "
+ << " at " << sc_time_stamp() << endl;
+ i++;
+ if(i == 24) sc_stop();
+ wait();
+ }
+}
+
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/display.h b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/display.h
new file mode 100644
index 000000000..ea15269eb
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/display.h
@@ -0,0 +1,69 @@
+/*****************************************************************************
+
+ Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
+ more contributor license agreements. See the NOTICE file distributed
+ with this work for additional information regarding copyright ownership.
+ Accellera licenses this file to you under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with the
+ License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied. See the License for the specific language governing
+ permissions and limitations under the License.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ display.h --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "common.h"
+
+SC_MODULE( display )
+{
+ SC_HAS_PROCESS( display );
+
+ sc_in_clk clk;
+
+ const sc_signal_bool_vector& in_data1; // Input port
+ const sc_signal_bool_vector& in_data2; // Input port
+ const sc_signal<bool>& in_valid;
+
+ display( sc_module_name NAME,
+ sc_clock& CLK,
+ const sc_signal_bool_vector& IN_DATA1,
+ const sc_signal_bool_vector& IN_DATA2,
+ const sc_signal<bool>& IN_VALID
+ )
+ :
+ in_data1(IN_DATA1),
+ in_data2(IN_DATA2),
+ in_valid(IN_VALID)
+ {
+ clk(CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ }
+
+ void entry();
+};
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/golden/inlining.log b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/golden/inlining.log
new file mode 100644
index 000000000..b5ed181e7
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/golden/inlining.log
@@ -0,0 +1,67 @@
+SystemC Simulation
+Stimuli: stim1= 0 stim2= 0 stim3= 0 stim4= 0 2 ns
+tmp1 my print 1
+tmp2 my print 0
+Display : 0001 0000 at 5 ns
+Stimuli: stim1= 1 stim2= 1 stim3= 1 stim4= 1 13 ns
+tmp1 my print 2
+tmp2 my print 1
+Display : 0010 0001 at 16 ns
+Stimuli: stim1= 2 stim2= 2 stim3= 2 stim4= 2 24 ns
+tmp1 my print 3
+tmp2 my print 2
+Display : 0011 0010 at 27 ns
+Stimuli: stim1= 3 stim2= 3 stim3= 3 stim4= 3 35 ns
+tmp1 my print 4
+tmp2 my print 3
+Display : 0100 0011 at 38 ns
+Stimuli: stim1= 4 stim2= 4 stim3= 4 stim4= 4 46 ns
+tmp1 my print 5
+tmp2 my print 4
+Display : 0101 0100 at 49 ns
+Stimuli: stim1= 5 stim2= 5 stim3= 5 stim4= 5 57 ns
+tmp1 my print 6
+tmp2 my print 5
+Display : 0110 0101 at 60 ns
+Stimuli: stim1= 6 stim2= 6 stim3= 6 stim4= 6 68 ns
+tmp1 my print 7
+tmp2 my print 6
+Display : 0111 0110 at 71 ns
+Stimuli: stim1= 7 stim2= 7 stim3= 7 stim4= 7 79 ns
+tmp1 my print 8
+tmp2 my print 7
+Display : 1000 0111 at 82 ns
+Stimuli: stim1= 8 stim2= 8 stim3= 8 stim4= 8 90 ns
+tmp1 my print 9
+tmp2 my print 8
+Display : 1001 1000 at 93 ns
+Stimuli: stim1= 9 stim2= 9 stim3= 9 stim4= 9 101 ns
+tmp1 my print 10
+tmp2 my print 9
+Display : 1010 1001 at 104 ns
+Stimuli: stim1= 10 stim2= 10 stim3= 10 stim4= 10 112 ns
+tmp1 my print 11
+tmp2 my print 10
+Display : 1011 1010 at 115 ns
+Stimuli: stim1= 11 stim2= 11 stim3= 11 stim4= 11 123 ns
+tmp1 my print 12
+tmp2 my print 11
+Display : 1100 1011 at 126 ns
+Stimuli: stim1= 12 stim2= 12 stim3= 12 stim4= 12 134 ns
+tmp1 my print 13
+tmp2 my print 12
+Display : 1101 1100 at 137 ns
+Stimuli: stim1= 13 stim2= 13 stim3= 13 stim4= 13 145 ns
+tmp1 my print 14
+tmp2 my print 13
+Display : 1110 1101 at 148 ns
+Stimuli: stim1= 14 stim2= 14 stim3= 14 stim4= 14 156 ns
+tmp1 my print 15
+tmp2 my print 14
+Display : 1111 1110 at 159 ns
+Stimuli: stim1= 15 stim2= 15 stim3= 15 stim4= 15 167 ns
+tmp1 my print 0
+tmp2 my print 15
+Display : 1111 1111 at 170 ns
+
+Info: /OSCI/SystemC: Simulation stopped by user.
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.cpp b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.cpp
new file mode 100644
index 000000000..232c6a8e2
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.cpp
@@ -0,0 +1,96 @@
+/*****************************************************************************
+
+ Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
+ more contributor license agreements. See the NOTICE file distributed
+ with this work for additional information regarding copyright ownership.
+ Accellera licenses this file to you under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with the
+ License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied. See the License for the specific language governing
+ permissions and limitations under the License.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ inlining.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "inlining.h"
+
+// list of defines
+// #define MAXI(a,b) ((a)>(b)?(a):(b))
+#define MAXI(a,b) ( (a) > (b) ? sc_biguint<4>( a ) : sc_biguint<4>( b ) )
+#define clockedge wait()
+#define my_print(a) cout << #a << " my print " << a << endl
+#define my_if(a, b, c) if (a < 6 ) { \
+ b = 0; \
+ } else { \
+ b = c; \
+ };
+
+void inlining::entry(){
+
+ sc_biguint<4> tmp1;
+ sc_biguint<4> tmp2;
+ sc_lv<4> tmp3;
+ sc_bv<4> tmp4;
+
+ // reset_loop
+ if (reset.read() == true) {
+ out_value1.write(0);
+ out_value2.write(0);
+ out_valid.write(false);
+ clockedge;
+ } else clockedge;
+
+ //
+ // main loop
+ //
+ while(1) {
+ do { wait(); } while (in_valid == false);
+
+ //reading inputs
+ tmp1 = in_value1.read();
+ tmp2 = in_value2.read();
+ tmp3 = in_value3.read();
+ tmp4 = in_value4.read();
+
+ //execution
+ ++tmp1;
+ out_value1.write(MAXI(tmp1, tmp2));
+ my_print(tmp1);
+ my_print(tmp2);
+ clockedge;
+
+ my_if(tmp2, tmp3, tmp4);
+ out_value2.write(tmp4);
+ out_valid.write(true);
+ clockedge;
+ out_valid.write(false);
+
+ }
+}
+
+// EOF
+
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.f b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.f
new file mode 100644
index 000000000..4c51c0531
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.f
@@ -0,0 +1,4 @@
+inlining/main.cpp
+inlining/stimulus.cpp
+inlining/display.cpp
+inlining/inlining.cpp
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.h b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.h
new file mode 100644
index 000000000..457fd7048
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.h
@@ -0,0 +1,93 @@
+/*****************************************************************************
+
+ Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
+ more contributor license agreements. See the NOTICE file distributed
+ with this work for additional information regarding copyright ownership.
+ Accellera licenses this file to you under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with the
+ License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied. See the License for the specific language governing
+ permissions and limitations under the License.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ inlining.h --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "common.h"
+
+SC_MODULE( inlining )
+{
+ SC_HAS_PROCESS( inlining );
+
+ sc_in_clk clk;
+
+ const sc_signal<bool>& reset ;
+ const sc_signal_bool_vector& in_value1 ;
+ const sc_signal_bool_vector& in_value2 ;
+ const sc_signal_bool_vector& in_value3 ;
+ const sc_signal_bool_vector& in_value4 ;
+ const sc_signal<bool>& in_valid;
+ sc_signal_bool_vector& out_value1;
+ sc_signal_bool_vector& out_value2;
+ sc_signal<bool>& out_valid;
+
+ //
+ // Constructor
+ //
+
+ inlining(
+ sc_module_name NAME, // referense name
+ sc_clock& CLK, // clock
+ const sc_signal<bool>& RESET,
+ const sc_signal_bool_vector& IN_VALUE1,
+ const sc_signal_bool_vector& IN_VALUE2,
+ const sc_signal_bool_vector& IN_VALUE3,
+ const sc_signal_bool_vector& IN_VALUE4,
+ const sc_signal<bool>& IN_VALID, // Input port
+ sc_signal_bool_vector& OUT_VALUE1,
+ sc_signal_bool_vector& OUT_VALUE2,
+ sc_signal<bool>& OUT_VALID // Input port
+ )
+ :
+ reset (RESET),
+ in_value1 (IN_VALUE1),
+ in_value2 (IN_VALUE2),
+ in_value3 (IN_VALUE3),
+ in_value4 (IN_VALUE4),
+ in_valid (IN_VALID),
+ out_value1 (OUT_VALUE1),
+ out_value2 (OUT_VALUE2),
+ out_valid (OUT_VALID)
+ {
+ clk (CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ reset_signal_is(reset,true);
+ };
+ //
+ void entry ();
+};
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/main.cpp b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/main.cpp
new file mode 100644
index 000000000..89a428293
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/main.cpp
@@ -0,0 +1,92 @@
+/*****************************************************************************
+
+ Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
+ more contributor license agreements. See the NOTICE file distributed
+ with this work for additional information regarding copyright ownership.
+ Accellera licenses this file to you under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with the
+ License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied. See the License for the specific language governing
+ permissions and limitations under the License.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ main.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "inlining.h"
+#include "stimulus.h"
+#include "display.h"
+
+int sc_main (int argc , char *argv[]) {
+ sc_clock clock;
+ sc_signal<bool> reset;
+ sc_signal_bool_vector stim1;
+ sc_signal_bool_vector stim2;
+ sc_signal_bool_vector stim3;
+ sc_signal_bool_vector stim4;
+ sc_signal<bool> input_valid;
+ sc_signal_bool_vector result1;
+ sc_signal_bool_vector result2;
+ sc_signal<bool> output_valid;
+
+
+
+ inlining inlining1 (
+ "process_body",
+ clock,
+ reset,
+ stim1,
+ stim2,
+ stim3,
+ stim4,
+ input_valid,
+ result1,
+ result2,
+ output_valid
+ );
+
+ stimulus stimulus1 ("stimulus",
+ clock,
+ reset,
+ stim1,
+ stim2,
+ stim3,
+ stim4,
+ input_valid
+ );
+
+ display display1 ("display",
+ clock,
+ result1,
+ result2,
+ output_valid
+ );
+
+ sc_start();
+ return 0;
+}
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/stimulus.cpp b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/stimulus.cpp
new file mode 100644
index 000000000..2e897dacc
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/stimulus.cpp
@@ -0,0 +1,71 @@
+/*****************************************************************************
+
+ Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
+ more contributor license agreements. See the NOTICE file distributed
+ with this work for additional information regarding copyright ownership.
+ Accellera licenses this file to you under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with the
+ License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied. See the License for the specific language governing
+ permissions and limitations under the License.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ stimulus.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "stimulus.h"
+
+void stimulus::entry() {
+
+int i;
+
+ // sending some reset values
+ reset.write(true);
+ stim1.write(0);
+ stim2.write(0);
+ stim3.write(0);
+ stim4.write(0);
+ wait();
+ reset.write(false);
+ wait();
+ for (i=0; i<= 15; i++) {
+ stim1.write(i);
+ stim2.write(i);
+ stim3.write(i);
+ stim4.write(i);
+ input_valid.write(true);
+ cout << "Stimuli: stim1= " << i << " stim2= " << i << " stim3= "
+ << i << " stim4= " << i << " "
+ << sc_time_stamp() << endl;
+ wait();
+ input_valid.write(false);
+ wait(10);
+ }
+
+ sc_stop();
+}
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/stimulus.h b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/stimulus.h
new file mode 100644
index 000000000..a82afff4c
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/stimulus.h
@@ -0,0 +1,78 @@
+/*****************************************************************************
+
+ Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
+ more contributor license agreements. See the NOTICE file distributed
+ with this work for additional information regarding copyright ownership.
+ Accellera licenses this file to you under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with the
+ License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied. See the License for the specific language governing
+ permissions and limitations under the License.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ stimulus.h --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "common.h"
+
+SC_MODULE( stimulus )
+{
+ SC_HAS_PROCESS( stimulus );
+
+ sc_in_clk clk;
+
+ sc_signal<bool>& reset;
+ sc_signal_bool_vector& stim1;
+ sc_signal_bool_vector& stim2;
+ sc_signal_bool_vector& stim3;
+ sc_signal_bool_vector& stim4;
+ sc_signal<bool>& input_valid;
+
+ stimulus(sc_module_name NAME,
+ sc_clock& CLK,
+ sc_signal<bool>& RESET,
+ sc_signal_bool_vector& STIM1,
+ sc_signal_bool_vector& STIM2,
+ sc_signal_bool_vector& STIM3,
+ sc_signal_bool_vector& STIM4,
+ sc_signal<bool>& INPUT_VALID
+ )
+ :
+ reset(RESET),
+ stim1(STIM1),
+ stim2(STIM2),
+ stim3(STIM3),
+ stim4(STIM4),
+ input_valid(INPUT_VALID)
+ {
+ clk(CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ }
+
+ void entry();
+};
+
+// EOF