diff options
author | (no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-09-09 04:42:17 +0000 |
---|---|---|
committer | (no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-09-09 04:42:17 +0000 |
commit | 83c18361d821819208e5d8024e8b557c359fdc7d (patch) | |
tree | 78bf53a2540e36207638c4735b116432299a998d /openpcd/firmware/src/start/Cstartup.S | |
parent | 3a98ae12852a75f2331571fafb148f55ee073969 (diff) |
- cosmetic cleanup
git-svn-id: https://svn.openpcd.org:2342/trunk@146 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
Diffstat (limited to 'openpcd/firmware/src/start/Cstartup.S')
-rw-r--r-- | openpcd/firmware/src/start/Cstartup.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openpcd/firmware/src/start/Cstartup.S b/openpcd/firmware/src/start/Cstartup.S index 731d4c3..1c9f1db 100644 --- a/openpcd/firmware/src/start/Cstartup.S +++ b/openpcd/firmware/src/start/Cstartup.S @@ -19,11 +19,12 @@ //#define DEBUG_LL #ifdef DEBUG_LL +/* Debugging macros for switching on/off LED1 (green) */ #define PIOA_PER 0xFFFFF400 #define PIOA_OER 0xFFFFF410 #define PIOA_SODR 0xFFFFF430 #define PIOA_CODR 0xFFFFF434 -#define LED1 25 +#define LED1 25 /* this only works on OpenPICC, not Olimex */ .macro led1on ldr r2, =PIOA_CODR mov r1, #(1 << LED1) |