diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-07-20 16:34:46 +0400 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-07-20 16:34:46 +0400 |
| commit | 9b856ae4d7ad3dafc5cc6eac9194ff3803965d94 (patch) | |
| tree | a2ed8285af123c8276c6acfcda41e8d0888d7632 /kernel/Types/types.hpp | |
| parent | 78f219c0ec049a08312896fdb1194ce03a54769a (diff) | |
Switch to cpp
Diffstat (limited to 'kernel/Types/types.hpp')
| -rw-r--r-- | kernel/Types/types.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/kernel/Types/types.hpp b/kernel/Types/types.hpp new file mode 100644 index 0000000..a6f334e --- /dev/null +++ b/kernel/Types/types.hpp @@ -0,0 +1,14 @@ +#ifndef __types__ +#define __types__ + +//Byte : +typedef unsigned char u8; + +//Word : +typedef unsigned short u16; + +//Double Word : +typedef unsigned long int u32; + + +#endif |
