e9f88f6f93156657238620d78c951d4a469f56c8
[calu.git] / 3b_sim / cdat.hpp
1 #ifndef __CDAT_H__
2 #define __CDAT_H__
3
4 #include <string>
5 #include <sstream>
6
7 typedef int CDat;
8
9 #define BIT_LEN 32
10
11 //static_assert(sizeof(CDat) == 4, "The size of the datatype for int is NOT 4 bytes (32 Bit!)");
12 #endif