source: src/lib/util/misc/scinttest.cc@ 5d30c1

Last change on this file since 5d30c1 was 5d30c1, checked in by Frederik Heber <heber@…>, 13 years ago

Initial commit based on 3.0.0alpha (here claimed as 2.4).

  • simply added all files.
  • Property mode set to 100644
File size: 395 bytes
Line 
1
2#include <iostream>
3
4#include <util/misc/scint.h>
5
6using namespace sc;
7
8main()
9{
10 std::cout << "sizeof(sc_int8_t) = " << sizeof(sc_int8_t) << std::endl;
11 std::cout << "sizeof(sc_int16_t) = " << sizeof(sc_int16_t) << std::endl;
12 std::cout << "sizeof(sc_int32_t) = " << sizeof(sc_int32_t) << std::endl;
13 std::cout << "sizeof(sc_int64_t) = " << sizeof(sc_int64_t) << std::endl;
14
15 return 0;
16}
Note: See TracBrowser for help on using the repository browser.