首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

求助!MCF52233DEMO板,编译成功下载后,程序跳转不对了

求助!MCF52233DEMO板,编译成功下载后,程序跳转不对了

/* Initialize the system */
jsr mcf5223_init // 原程序跳转到mcf5223_init
00000608: 4EB900001A70 jsr strncpy (0x1a70) ; 0x00001a70
// 反汇编后,实际是strncpy
/* Common startup code */
// jsr common_startup

/* Save off intial D0 and D1 to RAM */
move.l d6,d0_reset
0000060E: 23C620000000 move.l d6,.symtab + 0x00000000 (0x20000000) (0x20000000)
move.l d7,d1_reset
00000614: 23C720000004 move.l d7,0x20000004 (0x20000004)

/* CPU specific startup code */
jsr cpu_startup
0000061A: 4EB9000025FC jsr main (0x25fc) ; 0x000025fc

/* Jump to the main process */
jsr main
00000620: 4EB900002260 jsr mcf5xxx_exception_handler (0x2260); 0x00002260

bra .
00000626: 60FE bra.s _@DummyFn3+0x6a (0x626) ; 0x00000626
nop
00000628: 4E71 nop
nop
0000062A: 4E71 nop
halt
0000062C: 4AC8 halt
coldfire5223x

源码是什么样的?

返回列表