summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mcf52235/start/start.S
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-16 22:16:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-16 22:16:06 +0000
commitec2ae9fa878267a521af9c7bcd6e2e939a55960d (patch)
tree16ec52ff46e2a8f54e17158ba62e0ddf9e757031 /c/src/lib/libbsp/m68k/mcf52235/start/start.S
parent2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-ec2ae9fa878267a521af9c7bcd6e2e939a55960d.tar.bz2
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, start/start.S, startup/linkcmds: Use top level shared bsp_get_work_area() implementation.
Diffstat (limited to 'c/src/lib/libbsp/m68k/mcf52235/start/start.S')
-rw-r--r--c/src/lib/libbsp/m68k/mcf52235/start/start.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/m68k/mcf52235/start/start.S b/c/src/lib/libbsp/m68k/mcf52235/start/start.S
index 386924c0d3..03a0091b1b 100644
--- a/c/src/lib/libbsp/m68k/mcf52235/start/start.S
+++ b/c/src/lib/libbsp/m68k/mcf52235/start/start.S
@@ -355,7 +355,7 @@ SYM(start):
move.l d1, d7
/* Initialize RAMBAR: locate SRAM and validate it */
- move.l #_RamBase, d0
+ move.l #RamBase, d0
add.l #0x21, d0
movec d0, %rambar
@@ -405,7 +405,7 @@ _change_flashbar:
* If running in SRAM, change_flashbar should not be executed
*/
- move.l #_RamBase, a0
+ move.l #RamBase, a0
/* Code "move.l #(__FLASH + 0x61),d0" into SRAM */
move.w #0x203C, d0
@@ -425,7 +425,7 @@ _change_flashbar:
move.l d0, (a0)+
/* Jump to code segment in internal SRAM */
- jmp _RamBase
+ jmp RamBase
END_CODE