summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/datatypes/int/sc_unsigned/part_select/test02/test02.cpp
blob: 2cd2666ff0476da146ab8768ecfb325959f7b165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#define SC_INCLUDE_FX

#include "systemc.h" 
int sc_main(int argc, char** argv) 
{ 
	sc_biguint<3>  big;

	cout << big(1,2) << endl;

	cout << "Program completed" << endl;
	return 0;
}