aboutsummaryrefslogtreecommitdiff
path: root/src/utils/types.h
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2023-10-27 00:37:29 +0200
committerJohannes Stoelp <johannes.stoelp@gmail.com>2023-10-27 00:37:29 +0200
commit19a5b01f0b2a4a3609a8a8ed32fba8dd376e1905 (patch)
tree83368b6ccc154d3da89dd191f1f24050c729a202 /src/utils/types.h
parenteef63c3da8e85f9f155dbc313ec8a87bafd883fd (diff)
downloadsysc-playground-19a5b01f0b2a4a3609a8a8ed32fba8dd376e1905.tar.gz
sysc-playground-19a5b01f0b2a4a3609a8a8ed32fba8dd376e1905.zip
move utils into subfolder and different files
Diffstat (limited to 'src/utils/types.h')
-rw-r--r--src/utils/types.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/utils/types.h b/src/utils/types.h
new file mode 100644
index 0000000..a13b8ef
--- /dev/null
+++ b/src/utils/types.h
@@ -0,0 +1,11 @@
+#ifndef SYSC_PLAYGROUND_TYPES
+#define SYSC_PLAYGROUND_TYPES
+
+#include <cstdint>
+
+using u32 = std::uint32_t;
+using u64 = std::uint64_t;
+
+using usize = std::size_t;
+
+#endif