diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-02-14 09:42:46 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-02-14 09:42:46 +0000 |
commit | 6a21d25cb55110ba179ee3ffe9e559102ad470a3 (patch) | |
tree | b4dff6a8e8ae75e0e0397e62c38cec77c60187a2 /os/ports/GCC/PPC/SPC56ELxx/bam.s | |
parent | ec0a1f48ad75964af7486c8a4687202b5cb3853d (diff) | |
download | ChibiOS-6a21d25cb55110ba179ee3ffe9e559102ad470a3.tar.gz ChibiOS-6a21d25cb55110ba179ee3ffe9e559102ad470a3.tar.bz2 ChibiOS-6a21d25cb55110ba179ee3ffe9e559102ad470a3.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5178 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports/GCC/PPC/SPC56ELxx/bam.s')
-rw-r--r-- | os/ports/GCC/PPC/SPC56ELxx/bam.s | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/os/ports/GCC/PPC/SPC56ELxx/bam.s b/os/ports/GCC/PPC/SPC56ELxx/bam.s index 1d9f1c6b5..0760257a2 100644 --- a/os/ports/GCC/PPC/SPC56ELxx/bam.s +++ b/os/ports/GCC/PPC/SPC56ELxx/bam.s @@ -28,14 +28,18 @@ #if !defined(__DOXYGEN__)
- /* BAM info, SWT off, WTE off, VLE from settings.*/
+ /* BAM record.*/
.section .bam, "ax"
+#if PPC_USE_VLE
.long 0x015A0000
+#else
+ .long 0x005A0000
+#endif
.long .init
- /* HW configuration.*/
.init:
bl _coreinit
+ bl _ivinit
b _boot_address
|