From 33613a85afc4b1481367fbe92a17ee59c240250b Mon Sep 17 00:00:00 2001 From: Sven Eisenhauer Date: Fri, 10 Nov 2023 15:11:48 +0100 Subject: add new repo --- Bachelor/Mikroprozessorsysteme2/mi2/h/std_c.h | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Bachelor/Mikroprozessorsysteme2/mi2/h/std_c.h (limited to 'Bachelor/Mikroprozessorsysteme2/mi2/h/std_c.h') 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 */ -- cgit v1.2.3