openocd: remove CamelCase symbols *xPSR*
[fw/openocd] / testing / examples / ledtest-imx27ads / test.c
index 945778df81703d6ffe22e11f1a5e9661ce6e0d79..01dc284dad4b2f6ef7dfc282394983e31ab9f008 100644 (file)
@@ -1,60 +1,56 @@
-/***************************************************************************\r
- *   Copyright (C) 2009 by Alan Carvalho de Assis                         *\r
- *   acassis@gmail.com                                                     *\r
- *                                                                         *\r
- *   This program is free software; you can redistribute it and/or modify  *\r
- *   it under the terms of the GNU General Public License as published by  *\r
- *   the Free Software Foundation; either version 2 of the License, or     *\r
- *   (at your option) any later version.                                   *\r
- *                                                                         *\r
- *   This program is distributed in the hope that it will be useful,       *\r
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *\r
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *\r
- *   GNU General Public License for more details.                          *\r
- *                                                                         *\r
- *   You should have received a copy of the GNU General Public License     *\r
- *   along with this program; if not, write to the                         *\r
- *   Free Software Foundation, Inc.,                                       *\r
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *\r
- ***************************************************************************/\r
-\r
-void delay()\r
-{\r
-       int i;\r
-       for (i = 0; i < 500000; i++);\r
-}\r
-\r
-/* MAIN ARM FUNTION */\r
-int main (void)  \r
-{\r
-       int i;  \r
-        volatile unsigned char *ledoff = ((volatile unsigned char *)0xD4000008);\r
-        volatile unsigned char *ledon = ((volatile unsigned char *)0xD400000C);\r
-       \r
-       for (i = 0; i < 10000; i++)\r
-       {\r
-               *ledon = 0x30;\r
-               delay();\r
-               *ledoff = 0x30;\r
-               delay();\r
-       } /* FOR */\r
-\r
-} /* MAIN */\r
-\r
-__gccmain()\r
-{\r
-} /* GCCMAIN */\r
-\r
-\r
-void exit(int exit_code)\r
-{\r
-  while(1);\r
-} /* EXIT */\r
-\r
-\r
-atexit()\r
-{\r
-  while(1);\r
-} /* ATEXIT */\r
-\r
-\r
+/***************************************************************************
+ *   Copyright (C) 2009 by Alan Carvalho de Assis                                 *
+ *   acassis@gmail.com                                                     *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
+ ***************************************************************************/
+
+void delay()
+{
+       int i;
+       for (i = 0; i < 500000; i++);
+}
+
+/* MAIN ARM FUNTION */
+int main (void)
+{
+       int i;
+        volatile unsigned char *ledoff = ((volatile unsigned char *)0xD4000008);
+        volatile unsigned char *ledon = ((volatile unsigned char *)0xD400000C);
+
+       for (i = 0; i < 10000; i++)
+       {
+               *ledon = 0x30;
+               delay();
+               *ledoff = 0x30;
+               delay();
+       } /* FOR */
+
+} /* MAIN */
+
+__gccmain()
+{
+} /* GCCMAIN */
+
+
+void exit(int exit_code)
+{
+  while (1);
+} /* EXIT */
+
+
+atexit()
+{
+  while (1);
+} /* ATEXIT */