summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/datatypes/int/concat/test03/test03.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/tests/systemc/datatypes/int/concat/test03/test03.cpp')
-rw-r--r--src/systemc/tests/systemc/datatypes/int/concat/test03/test03.cpp190
1 files changed, 190 insertions, 0 deletions
diff --git a/src/systemc/tests/systemc/datatypes/int/concat/test03/test03.cpp b/src/systemc/tests/systemc/datatypes/int/concat/test03/test03.cpp
new file mode 100644
index 000000000..c1431f6f7
--- /dev/null
+++ b/src/systemc/tests/systemc/datatypes/int/concat/test03/test03.cpp
@@ -0,0 +1,190 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ test03.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:
+
+ *****************************************************************************/
+
+// test of sc_[u]int concatenation with type bool, operator , ()
+
+#include "systemc.h"
+
+#define WRITE(a) \
+ cout << a << endl
+
+int
+sc_main( int, char*[] )
+{
+ bool b;
+
+ // ))) sc_uint (((
+
+ sc_uint<3> ui3 = 3;
+ sc_uint<4> ui4;
+ sc_uint<2> ui2;
+
+ // sc_uint_base
+
+ b = false;
+ ui4 = ( ui3, b );
+ WRITE( ui4 );
+ ui4 = ( b, ui3 );
+ WRITE( ui4 );
+
+ b = true;
+ ui4 = ( ui3, b );
+ WRITE( ui4 );
+ ui4 = ( b, ui3 );
+ WRITE( ui4 );
+
+ // sc_uint_bitref
+
+ cout << endl;
+
+ b = false;
+ ui2 = ( ui3[0], b );
+ WRITE( ui2 );
+ ui2 = ( b, ui3[0] );
+ WRITE( ui2 );
+
+ b = true;
+ ui2 = ( ui3[0], b );
+ WRITE( ui2 );
+ ui2 = ( b, ui3[0] );
+ WRITE( ui2 );
+
+ // sc_uint_subref
+
+ cout << endl;
+
+ b = false;
+ ui2 = ( ui3.range( 0, 0 ), b );
+ WRITE( ui2 );
+ ui2 = ( b, ui3.range( 0, 0 ) );
+ WRITE( ui2 );
+
+ b = true;
+ ui2 = ( ui3.range( 0, 0 ), b );
+ WRITE( ui2 );
+ ui2 = ( b, ui3.range( 0, 0 ) );
+ WRITE( ui2 );
+
+ // sc_uint_concat
+
+ cout << endl;
+
+ b = false;
+ ui4 = ( ( ui3.range( 2, 1 ), ui3[0] ), b );
+ WRITE( ui4 );
+ ui4 = ( b, ( ui3.range( 2, 1 ), ui3[0] ) );
+ WRITE( ui4 );
+
+ b = true;
+ ui4 = ( ( ui3.range( 2, 1 ), ui3[0] ), b );
+ WRITE( ui4 );
+ ui4 = ( b, ( ui3.range( 2, 1 ), ui3[0] ) );
+ WRITE( ui4 );
+
+
+ // ))) sc_int (((
+
+ sc_int<3> i3 = 3;
+ sc_int<4> i4;
+ sc_int<2> i2;
+
+ // sc_int_base
+
+ cout << endl;
+
+ b = false;
+ i4 = ( i3, b );
+ WRITE( i4 );
+ i4 = ( b, i3 );
+ WRITE( i4 );
+
+ b = true;
+ i4 = ( i3, b );
+ WRITE( i4 );
+ i4 = ( b, i3 );
+ WRITE( i4 );
+
+ // sc_int_bitref
+
+ cout << endl;
+
+ b = false;
+ i2 = ( i3[0], b );
+ WRITE( i2 );
+ i2 = ( b, i3[0] );
+ WRITE( i2 );
+
+ b = true;
+ i2 = ( i3[0], b );
+ WRITE( i2 );
+ i2 = ( b, i3[0] );
+ WRITE( i2 );
+
+ // sc_int_subref
+
+ cout << endl;
+
+ b = false;
+ i2 = ( i3.range( 0, 0 ), b );
+ WRITE( i2 );
+ i2 = ( b, i3.range( 0, 0 ) );
+ WRITE( i2 );
+
+ b = true;
+ i2 = ( i3.range( 0, 0 ), b );
+ WRITE( i2 );
+ i2 = ( b, i3.range( 0, 0 ) );
+ WRITE( i2 );
+
+ // sc_int_concat
+
+ cout << endl;
+
+ b = false;
+ i4 = ( ( i3.range( 2, 1 ), i3[0] ), b );
+ WRITE( i4 );
+ i4 = ( b, ( i3.range( 2, 1 ), i3[0] ) );
+ WRITE( i4 );
+
+ b = true;
+ i4 = ( ( i3.range( 2, 1 ), i3[0] ), b );
+ WRITE( i4 );
+ i4 = ( b, ( i3.range( 2, 1 ), i3[0] ) );
+ WRITE( i4 );
+
+ return 0;
+}