summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/misc/examples/a2901/a2901.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/tests/systemc/misc/examples/a2901/a2901.cpp')
-rw-r--r--src/systemc/tests/systemc/misc/examples/a2901/a2901.cpp81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/systemc/tests/systemc/misc/examples/a2901/a2901.cpp b/src/systemc/tests/systemc/misc/examples/a2901/a2901.cpp
new file mode 100644
index 000000000..3ed026600
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/examples/a2901/a2901.cpp
@@ -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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ a2901.cpp --
+
+ 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:
+
+ *****************************************************************************/
+
+#include "a2901.h"
+#include "a2901_test.h"
+
+SC_MODULE( twosome )
+{
+ // signals
+ sig4 Y;
+ sig1 t_RAM0, t_RAM3, t_Q0, t_Q3, C4;
+ sig1 Gbar, Pbar, OVR, F3, F30;
+ sig9 I;
+ sig4 Aadd, Badd, D;
+ sig1 RAM0, RAM3, Q0, Q3, C0, OEbar;
+
+ // modules
+ a2901 SLICE;
+ a2901_test TB;
+
+ // constructor
+ twosome( sc_module_name,
+ const sc_clock& CLK_ )
+ : SLICE( "a2901",
+ CLK_,
+ I, Aadd, Badd, D, RAM0, RAM3, Q0, Q3, C0, OEbar,
+ Y, t_RAM0, t_RAM3, t_Q0, t_Q3, C4, Gbar, Pbar, OVR, F3, F30 ),
+ TB( "a2901_test",
+ CLK_,
+ Y, t_RAM0, t_RAM3, t_Q0, t_Q3, C4, Gbar, Pbar, OVR, F3, F30,
+ I, Aadd, Badd, D, RAM0, RAM3, Q0, Q3, C0, OEbar )
+ {}
+};
+
+int
+sc_main( int, char*[] )
+{
+ sc_clock clk;
+
+ twosome AA( "AA", clk );
+
+ sc_start( 410000, SC_NS );
+
+ cout << sc_time_stamp() << endl;
+
+ return 0;
+}