Add start of platform-specific abstraction files
[avr_cal.git] / src / calgcc.h
diff --git a/src/calgcc.h b/src/calgcc.h
new file mode 100644 (file)
index 0000000..0bef805
--- /dev/null
@@ -0,0 +1,28 @@
+/*****************************************************************************
+** FILE IDENTIFICATION
+**
+**   Name:          calgcc.h
+**   Purpose:       AVR C Compiler Abstraction Layer for AVR-GCC
+**   Programmer:    Kevin Rosenberg <kevin@rosenberg.net> (AVRFreaks: kmr)
+**   Date Started:  Dec 2007
+**
+**   Copyright (c) 2008 by Kevin Rosenberg. All rights reserved.
+**
+** LICENSE
+**   See accompaning LICENSE file
+**
+** CHANGES
+**   See accompaning ChangeLog file
+******************************************************************************/
+
+#ifndef __CALGCC_H__
+#define __CALGCC_H__
+
+#ifndef __AVRCAL_H__
+#error This file should not be directly included. It is included by avrcal.h
+#endif
+
+// Standard header files
+#include <avr/io.h>
+
+#endif