summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/datatypes/int/sc_unsigned/part_select/test01/test01.cpp
blob: c4a06e742b77e42a9bac897ce1a8081880d2a280 (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(3,1) << endl;

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