summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes')
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/common.h46
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.cpp105
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.f4
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.h115
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/display.cpp54
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/display.h81
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/golden/datatypes.log204
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/main.cpp94
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/stimulus.cpp86
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/stimulus.h84
10 files changed, 873 insertions, 0 deletions
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/common.h b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/common.h
new file mode 100644
index 000000000..335b51334
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/common.h
@@ -0,0 +1,46 @@
+/*****************************************************************************
+
+ 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<2> > sc_signal_bool_vector2;
+typedef sc_signal<sc_bv<3> > sc_signal_bool_vector3;
+
+#endif
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.cpp b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.cpp
new file mode 100644
index 000000000..1418eba9b
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.cpp
@@ -0,0 +1,105 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ datatypes.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-12-10
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "datatypes.h"
+
+void datatypes::entry(){
+
+ sc_biguint<2> tmp1;
+ sc_bigint<2> tmp2;
+ sc_biguint<3> tmp3;
+ sc_bigint<3> tmp4;
+ sc_biguint<2> tmp1r;
+ sc_bigint<2> tmp2r;
+ sc_biguint<3> tmp3r;
+ sc_bigint<3> tmp4r;
+
+ // reset_loop
+ out_valid.write(false);
+ out_ack.write(false);
+ wait();
+
+ //
+ // main loop
+ //
+
+ while(1) {
+ //input handshake
+ while(in_valid.read()==false) wait();
+
+ //reading the inputs
+ tmp1 = in_value1.read();
+ tmp2 = in_value2.read();
+ tmp3 = in_value3.read();
+ tmp4 = in_value4.read();
+
+ // input handshake
+ out_ack.write(true);
+
+ //execute datatypes operations
+ // unsigned(2) <- signed(3)/unsigned(2)
+ tmp1r = tmp4 / tmp1;
+ // signed(2) <- unsigned(2)/signed(3)
+ tmp2r = tmp1 / tmp4;
+ // unsigned(3) <- unsigned(3)/unsigned(2)
+ tmp3r = tmp3 / tmp1;
+ // signed(3) <- signed(3)/signed(2)
+ tmp4r = tmp4 / tmp2;
+
+ // write outputs
+ out_value1.write(tmp1r);
+ out_value2.write(tmp2r);
+ out_value3.write(tmp3r);
+ out_value4.write(tmp4r);
+
+ //output handshake
+ out_valid.write(true);
+ wait();
+
+ //input handshake
+ out_ack.write(false);
+
+ //output handshake
+ out_valid.write(false);
+ wait();
+ }
+}
+
+// EOF
+
+
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.f b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.f
new file mode 100644
index 000000000..64f4c05f1
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.f
@@ -0,0 +1,4 @@
+datatypes/stimulus.cpp
+datatypes/display.cpp
+datatypes/datatypes.cpp
+datatypes/main.cpp
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.h b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.h
new file mode 100644
index 000000000..0d58458fd
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.h
@@ -0,0 +1,115 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ datatypes.h --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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( datatypes )
+{
+ SC_HAS_PROCESS( datatypes );
+
+ sc_in_clk clk;
+
+ //====================================================================
+ // [C] Always Needed Member Function
+ // -- constructor
+ // -- entry
+ //====================================================================
+
+ const sc_signal<bool>& reset ;
+ const sc_signal_bool_vector2& in_value1; // Input port
+ const sc_signal_bool_vector2& in_value2; // Input port
+ const sc_signal_bool_vector3& in_value3; // Input port
+ const sc_signal_bool_vector3& in_value4; // Input port
+ const sc_signal<bool>& in_valid; // Input port
+ sc_signal_bool_vector2& out_value1; // Output port
+ sc_signal_bool_vector2& out_value2; // Output port
+ sc_signal_bool_vector3& out_value3; // Output port
+ sc_signal_bool_vector3& out_value4; // Output port
+ sc_signal<bool>& out_ack; // Output port
+ sc_signal<bool>& out_valid; // Output port
+
+
+ //
+ // Constructor
+ //
+
+ datatypes (
+ sc_module_name NAME, // referense name
+ sc_clock& CLK, // clock
+ const sc_signal<bool>& RESET,
+ const sc_signal_bool_vector2& IN_VALUE1,
+ const sc_signal_bool_vector2& IN_VALUE2,
+ const sc_signal_bool_vector3& IN_VALUE3,
+ const sc_signal_bool_vector3& IN_VALUE4,
+ const sc_signal<bool>& IN_VALID, // Input port
+ sc_signal_bool_vector2& OUT_VALUE1,
+ sc_signal_bool_vector2& OUT_VALUE2,
+ sc_signal_bool_vector3& OUT_VALUE3,
+ sc_signal_bool_vector3& OUT_VALUE4,
+ sc_signal<bool>& OUT_ACK,
+ sc_signal<bool>& OUT_VALID // Output 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_value3 (OUT_VALUE3),
+ out_value4 (OUT_VALUE4),
+ out_ack (OUT_ACK),
+ 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/arith/divide/datatypes/display.cpp b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/display.cpp
new file mode 100644
index 000000000..649ac74a3
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/display.cpp
@@ -0,0 +1,54 @@
+/*****************************************************************************
+
+ 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-12-11
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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 counter = 0;
+ wait();
+
+ while(counter<100){
+ do { wait(); } while ( in_valid == false);
+ cout << "Display: " << in_value1.read() << " " << in_value2.read() << " " << in_value3.read() << " " << in_value4.read() << endl;
+ do { wait(); } while ( in_valid == true);
+ counter++;
+ }
+ sc_stop();
+}
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/display.h b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/display.h
new file mode 100644
index 000000000..c4efff539
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/display.h
@@ -0,0 +1,81 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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_vector2& in_value1; // Input port
+ const sc_signal_bool_vector2& in_value2; // Input port
+ const sc_signal_bool_vector3& in_value3; // Input port
+ const sc_signal_bool_vector3& in_value4; // Input port
+ const sc_signal<bool>& in_valid; // Input port
+
+ //
+ // Constructor
+ //
+
+ display(
+ sc_module_name NAME, // reference name
+ sc_clock& CLK, // clock
+ const sc_signal_bool_vector2& IN_VALUE1,
+ const sc_signal_bool_vector2& IN_VALUE2,
+ const sc_signal_bool_vector3& IN_VALUE3,
+ const sc_signal_bool_vector3& IN_VALUE4,
+ const sc_signal<bool>& IN_VALID
+ )
+ :
+ in_value1 (IN_VALUE1),
+ in_value2 (IN_VALUE2),
+ in_value3 (IN_VALUE3),
+ in_value4 (IN_VALUE4),
+ 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/arith/divide/datatypes/golden/datatypes.log b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/golden/datatypes.log
new file mode 100644
index 000000000..487107cf4
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/golden/datatypes.log
@@ -0,0 +1,204 @@
+SystemC Simulation
+Stimuli: 1 -2 2 3
+Display: 11 00 010 111
+Stimuli: 2 -1 3 -4
+Display: 10 00 001 100
+Stimuli: 3 1 4 -3
+Display: 11 11 001 101
+Stimuli: 1 -2 5 -2
+Display: 10 00 101 001
+Stimuli: 2 -1 6 -1
+Display: 00 10 011 001
+Stimuli: 3 1 7 1
+Display: 00 11 010 001
+Stimuli: 1 -2 1 2
+Display: 10 00 001 111
+Stimuli: 2 -1 2 3
+Display: 01 00 001 101
+Stimuli: 3 1 3 -4
+Display: 11 00 001 100
+Stimuli: 1 -2 4 -3
+Display: 01 00 100 001
+Stimuli: 2 -1 5 -2
+Display: 11 11 010 010
+Stimuli: 3 1 6 -1
+Display: 00 01 010 111
+Stimuli: 1 -2 7 1
+Display: 01 01 111 000
+Stimuli: 2 -1 1 2
+Display: 01 01 000 110
+Stimuli: 3 1 2 3
+Display: 01 01 000 011
+Stimuli: 1 -2 3 -4
+Display: 00 00 011 010
+Stimuli: 2 -1 4 -3
+Display: 11 00 010 011
+Stimuli: 3 1 5 -2
+Display: 00 11 001 110
+Stimuli: 1 -2 6 -1
+Display: 11 11 110 000
+Stimuli: 2 -1 7 1
+Display: 00 10 011 111
+Stimuli: 3 1 1 2
+Display: 00 01 000 010
+Stimuli: 1 -2 2 3
+Display: 11 00 010 111
+Stimuli: 2 -1 3 -4
+Display: 10 00 001 100
+Stimuli: 3 1 4 -3
+Display: 11 11 001 101
+Stimuli: 1 -2 5 -2
+Display: 10 00 101 001
+Stimuli: 2 -1 6 -1
+Display: 00 10 011 001
+Stimuli: 3 1 7 1
+Display: 00 11 010 001
+Stimuli: 1 -2 1 2
+Display: 10 00 001 111
+Stimuli: 2 -1 2 3
+Display: 01 00 001 101
+Stimuli: 3 1 3 -4
+Display: 11 00 001 100
+Stimuli: 1 -2 4 -3
+Display: 01 00 100 001
+Stimuli: 2 -1 5 -2
+Display: 11 11 010 010
+Stimuli: 3 1 6 -1
+Display: 00 01 010 111
+Stimuli: 1 -2 7 1
+Display: 01 01 111 000
+Stimuli: 2 -1 1 2
+Display: 01 01 000 110
+Stimuli: 3 1 2 3
+Display: 01 01 000 011
+Stimuli: 1 -2 3 -4
+Display: 00 00 011 010
+Stimuli: 2 -1 4 -3
+Display: 11 00 010 011
+Stimuli: 3 1 5 -2
+Display: 00 11 001 110
+Stimuli: 1 -2 6 -1
+Display: 11 11 110 000
+Stimuli: 2 -1 7 1
+Display: 00 10 011 111
+Stimuli: 3 1 1 2
+Display: 00 01 000 010
+Stimuli: 1 -2 2 3
+Display: 11 00 010 111
+Stimuli: 2 -1 3 -4
+Display: 10 00 001 100
+Stimuli: 3 1 4 -3
+Display: 11 11 001 101
+Stimuli: 1 -2 5 -2
+Display: 10 00 101 001
+Stimuli: 2 -1 6 -1
+Display: 00 10 011 001
+Stimuli: 3 1 7 1
+Display: 00 11 010 001
+Stimuli: 1 -2 1 2
+Display: 10 00 001 111
+Stimuli: 2 -1 2 3
+Display: 01 00 001 101
+Stimuli: 3 1 3 -4
+Display: 11 00 001 100
+Stimuli: 1 -2 4 -3
+Display: 01 00 100 001
+Stimuli: 2 -1 5 -2
+Display: 11 11 010 010
+Stimuli: 3 1 6 -1
+Display: 00 01 010 111
+Stimuli: 1 -2 7 1
+Display: 01 01 111 000
+Stimuli: 2 -1 1 2
+Display: 01 01 000 110
+Stimuli: 3 1 2 3
+Display: 01 01 000 011
+Stimuli: 1 -2 3 -4
+Display: 00 00 011 010
+Stimuli: 2 -1 4 -3
+Display: 11 00 010 011
+Stimuli: 3 1 5 -2
+Display: 00 11 001 110
+Stimuli: 1 -2 6 -1
+Display: 11 11 110 000
+Stimuli: 2 -1 7 1
+Display: 00 10 011 111
+Stimuli: 3 1 1 2
+Display: 00 01 000 010
+Stimuli: 1 -2 2 3
+Display: 11 00 010 111
+Stimuli: 2 -1 3 -4
+Display: 10 00 001 100
+Stimuli: 3 1 4 -3
+Display: 11 11 001 101
+Stimuli: 1 -2 5 -2
+Display: 10 00 101 001
+Stimuli: 2 -1 6 -1
+Display: 00 10 011 001
+Stimuli: 3 1 7 1
+Display: 00 11 010 001
+Stimuli: 1 -2 1 2
+Display: 10 00 001 111
+Stimuli: 2 -1 2 3
+Display: 01 00 001 101
+Stimuli: 3 1 3 -4
+Display: 11 00 001 100
+Stimuli: 1 -2 4 -3
+Display: 01 00 100 001
+Stimuli: 2 -1 5 -2
+Display: 11 11 010 010
+Stimuli: 3 1 6 -1
+Display: 00 01 010 111
+Stimuli: 1 -2 7 1
+Display: 01 01 111 000
+Stimuli: 2 -1 1 2
+Display: 01 01 000 110
+Stimuli: 3 1 2 3
+Display: 01 01 000 011
+Stimuli: 1 -2 3 -4
+Display: 00 00 011 010
+Stimuli: 2 -1 4 -3
+Display: 11 00 010 011
+Stimuli: 3 1 5 -2
+Display: 00 11 001 110
+Stimuli: 1 -2 6 -1
+Display: 11 11 110 000
+Stimuli: 2 -1 7 1
+Display: 00 10 011 111
+Stimuli: 3 1 1 2
+Display: 00 01 000 010
+Stimuli: 1 -2 2 3
+Display: 11 00 010 111
+Stimuli: 2 -1 3 -4
+Display: 10 00 001 100
+Stimuli: 3 1 4 -3
+Display: 11 11 001 101
+Stimuli: 1 -2 5 -2
+Display: 10 00 101 001
+Stimuli: 2 -1 6 -1
+Display: 00 10 011 001
+Stimuli: 3 1 7 1
+Display: 00 11 010 001
+Stimuli: 1 -2 1 2
+Display: 10 00 001 111
+Stimuli: 2 -1 2 3
+Display: 01 00 001 101
+Stimuli: 3 1 3 -4
+Display: 11 00 001 100
+Stimuli: 1 -2 4 -3
+Display: 01 00 100 001
+Stimuli: 2 -1 5 -2
+Display: 11 11 010 010
+Stimuli: 3 1 6 -1
+Display: 00 01 010 111
+Stimuli: 1 -2 7 1
+Display: 01 01 111 000
+Stimuli: 2 -1 1 2
+Display: 01 01 000 110
+Stimuli: 3 1 2 3
+Display: 01 01 000 011
+Stimuli: 1 -2 3 -4
+Display: 00 00 011 010
+Stimuli: 2 -1 4 -3
+
+Info: /OSCI/SystemC: Simulation stopped by user.
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/main.cpp b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/main.cpp
new file mode 100644
index 000000000..a56c0c05e
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/main.cpp
@@ -0,0 +1,94 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+#include "stimulus.h"
+#include "display.h"
+#include "datatypes.h"
+
+int sc_main (int argc , char *argv[]) {
+ sc_clock clock;
+ sc_signal<bool> reset;
+ sc_signal_bool_vector2 stimulus_line1;
+ sc_signal_bool_vector2 stimulus_line2;
+ sc_signal_bool_vector3 stimulus_line3;
+ sc_signal_bool_vector3 stimulus_line4;
+ sc_signal<bool> input_valid;
+ sc_signal<bool> ack;
+ sc_signal<bool> output_valid;
+ sc_signal_bool_vector2 result_line1;
+ sc_signal_bool_vector2 result_line2;
+ sc_signal_bool_vector3 result_line3;
+ sc_signal_bool_vector3 result_line4;
+
+ stimulus stimulus1("stimulus_block",
+ clock,
+ reset,
+ stimulus_line1,
+ stimulus_line2,
+ stimulus_line3,
+ stimulus_line4,
+ input_valid,
+ ack);
+
+ datatypes datatypes1( "process_body",
+ clock,
+ reset,
+ stimulus_line1,
+ stimulus_line2,
+ stimulus_line3,
+ stimulus_line4,
+ input_valid,
+ result_line1,
+ result_line2,
+ result_line3,
+ result_line4,
+ ack,
+ output_valid);
+
+ display display1( "display_block",
+ clock,
+ result_line1,
+ result_line2,
+ result_line3,
+ result_line4,
+ output_valid);
+
+ sc_start();
+ return 0;
+}
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/stimulus.cpp b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/stimulus.cpp
new file mode 100644
index 000000000..5f0d4fc1d
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/stimulus.cpp
@@ -0,0 +1,86 @@
+/*****************************************************************************
+
+ 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-10-01
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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() {
+
+ reset.write(true);
+ wait();
+ reset.write(false);
+
+ sc_unsigned tmp1(2);
+ sc_signed tmp2(2);
+ sc_unsigned tmp3(3);
+ sc_signed tmp4(3);
+ sc_unsigned zero_2(2);
+ sc_unsigned zero_3(3);
+
+ zero_3 = "000";
+ zero_2 = "00";
+ tmp1 = "01";
+ tmp2 = "10";
+ tmp3 = "010";
+ tmp4 = "011";
+
+
+ while(true){
+ // handshake
+ out_valid.write(true);
+ // write stimuli
+ out_value1.write(tmp1);
+ out_value2.write(tmp2);
+ out_value3.write(tmp3);
+ out_value4.write(tmp4);
+ cout << "Stimuli: "<< tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << endl;
+ // update stimuli
+ tmp1 = tmp1 + 1;
+ if (tmp1 == zero_2) tmp1 = "01";
+ tmp2 = tmp2 + 1;
+ if (tmp2 == zero_2) tmp2 = "01";
+ tmp3 = tmp3 + 1;
+ if (tmp3 == zero_3) tmp3 = "001";
+ tmp4 = tmp4 + 1;
+ if (tmp4 == zero_3) tmp4 = "001";
+ // handshake
+ do { wait(); } while (in_ack==false);
+ out_valid.write(false);
+ wait();
+ }
+}
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/stimulus.h b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/stimulus.h
new file mode 100644
index 000000000..5e7335244
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/stimulus.h
@@ -0,0 +1,84 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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_vector2& out_value1; // Output port
+ sc_signal_bool_vector2& out_value2; // Output port
+ sc_signal_bool_vector3& out_value3; // Output port
+ sc_signal_bool_vector3& out_value4; // Output port
+ sc_signal<bool>& out_valid; // Output port
+ const sc_signal<bool>& in_ack;
+
+ //
+ // Constructor
+ //
+
+ stimulus(
+ sc_module_name NAME, // reference name
+ sc_clock& CLK, // clock
+ sc_signal<bool>& RESET,
+ sc_signal_bool_vector2& OUT_VALUE1,
+ sc_signal_bool_vector2& OUT_VALUE2,
+ sc_signal_bool_vector3& OUT_VALUE3,
+ sc_signal_bool_vector3& OUT_VALUE4,
+ sc_signal<bool>& OUT_VALID,
+ const sc_signal<bool>& IN_ACK
+ )
+ :
+ reset (RESET),
+ out_value1 (OUT_VALUE1),
+ out_value2 (OUT_VALUE2),
+ out_value3 (OUT_VALUE3),
+ out_value4 (OUT_VALUE4),
+ out_valid (OUT_VALID),
+ in_ack (IN_ACK)
+ {
+ clk (CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ };
+ void entry();
+};
+// EOF