summaryrefslogtreecommitdiffstats
path: root/Bachelor/Mikroprozessorsysteme2/mi2/h/std_c.h
diff options
context:
space:
mode:
authorSven Eisenhauer <sven@sven-eisenhauer.net>2023-11-10 15:11:48 +0100
committerSven Eisenhauer <sven@sven-eisenhauer.net>2023-11-10 15:11:48 +0100
commit33613a85afc4b1481367fbe92a17ee59c240250b (patch)
tree670b842326116b376b505ec2263878912fca97e2 /Bachelor/Mikroprozessorsysteme2/mi2/h/std_c.h
downloadStudium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.gz
Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.bz2
add new repoHEADmaster
Diffstat (limited to 'Bachelor/Mikroprozessorsysteme2/mi2/h/std_c.h')
-rw-r--r--Bachelor/Mikroprozessorsysteme2/mi2/h/std_c.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/Bachelor/Mikroprozessorsysteme2/mi2/h/std_c.h b/Bachelor/Mikroprozessorsysteme2/mi2/h/std_c.h
new file mode 100644
index 0000000..b55e229
--- /dev/null
+++ b/Bachelor/Mikroprozessorsysteme2/mi2/h/std_c.h
@@ -0,0 +1,30 @@
+//*----------------------------------------------------------------------------
+//* File Name : std_c.h
+//* Object : Standard C Header File
+//*
+//* 1.0 27/10/02 GR : Creation
+//*----------------------------------------------------------------------------
+
+#ifndef std_c_h
+#define std_c_h
+
+/*----------------*/
+/* Standard types */
+/*----------------*/
+
+typedef unsigned int u_int ;
+typedef unsigned short u_short ;
+typedef unsigned char u_char ;
+
+
+/* AT91 Register type */
+typedef volatile unsigned int at91_reg ;
+
+/*----------------*/
+/* Boolean values */
+/*----------------*/
+
+#define TRUE 1
+#define FALSE 0
+
+#endif /* std_c_h */