summaryrefslogtreecommitdiff
path: root/include/arch/atmega2560/arch_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/arch/atmega2560/arch_types.h')
-rw-r--r--include/arch/atmega2560/arch_types.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/arch/atmega2560/arch_types.h b/include/arch/atmega2560/arch_types.h
new file mode 100644
index 0000000..2e9f070
--- /dev/null
+++ b/include/arch/atmega2560/arch_types.h
@@ -0,0 +1,12 @@
+/*
+ * Copyright 2021 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+#ifndef ARCH_TYPES_H
+#define ARCH_TYPES_H
+
+typedef uint8_t native_uint_t;
+typedef int8_t native_int_t;
+
+#endif