2619|1

76

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

关于代码在RAM执行的疑问 [复制链接]

这些天在尝试将28335的代码从FLASH搬移到RAM执行,通过反复执行一次正弦计算来间接验证搬移是否成功,在FLASH中跑代码的时候,计算一次大概用时5US,刚测试了下,时间缩短至0.5US的样子,然后我断电在上电,差不多还是0.5US的计算时间,是不是就能间接证明我的代码搬移是成功了呢?
 
点赞 关注

回复
举报

76

帖子

0

TA的资源

一粒金砂(中级)

沙发
 
另外,在如下代码中,我用分号屏蔽的那些全局变量是什么作用,我不屏蔽的话,要报错。这个段拷贝汇编代码是代码搬移必须用到的
;############################################################################
;
; FILE:   DSP28xxx_SectionCopy_nonBIOS.asm
;
; DESCRIPTION:  Provides functionality for copying intialized sections from
;                                flash to ram at runtime before entering the _c_int00 startup
;                                routine
;############################################################################
; Author: Tim Love
; Release Date: March 2008       
;############################################################################
        .ref _c_int00
        .global copy_sections
        ;.global _cinit_loadstart, _cinit_runstart, _cinit_size
        ;.global _const_loadstart, _const_runstart, _const_size
        ;.global _econst_loadstart, _econst_runstart, _econst_size
        ;.global _pinit_loadstart, _pinit_runstart, _pinit_size
        ;.global _switch_loadstart, _switch_runstart, _switch_size
        .global _text_loadstart, _text_runstart, _text_size

***********************************************************************
* Function: copy_sections
*
* Description: Copies initialized sections from flash to ram
***********************************************************************

        .sect "copysections"

copy_sections:


        ;MOVL XAR5,#_cinit_size                                ; Store Section Size in XAR5
        ;MOVL ACC,@XAR5                                                ; Move Section Size to ACC
        ;MOVL XAR6,#_cinit_loadstart                        ; Store Load Starting Address in XAR6
    ;MOVL XAR7,#_cinit_runstart                        ; Store Run Address in XAR7
    ;LCR  copy                                                        ; Branch to Copy

        ;MOVL XAR5,#_const_size                                ; Store Section Size in XAR5
        ;MOVL ACC,@XAR5                                                ; Move Section Size to ACC
        ;MOVL XAR6,#_const_loadstart                        ; Store Load Starting Address in XAR6
    ;MOVL XAR7,#_const_runstart                        ; Store Run Address in XAR7
    ;LCR  copy                                                        ; Branch to Copy

        ;MOVL XAR5,#_econst_size                                ; Store Section Size in XAR5
        ;MOVL ACC,@XAR5                                                ; Move Section Size to ACC
        ;MOVL XAR6,#_econst_loadstart                ; Store Load Starting Address in XAR6
    ;MOVL XAR7,#_econst_runstart                        ; Store Run Address in XAR7
    ;LCR  copy                                                        ; Branch to Copy

        ;MOVL XAR5,#_pinit_size                                ; Store Section Size in XAR5
        ;MOVL ACC,@XAR5                                                ; Move Section Size to ACC
        ;MOVL XAR6,#_pinit_loadstart                        ; Store Load Starting Address in XAR6
    ;MOVL XAR7,#_pinit_runstart                        ; Store Run Address in XAR7
    ;LCR  copy                                                        ; Branch to Copy

        ;MOVL XAR5,#_switch_size                                ; Store Section Size in XAR5
        ;MOVL ACC,@XAR5                                                ; Move Section Size to ACC
        ;MOVL XAR6,#_switch_loadstart                ; Store Load Starting Address in XAR6
    ;MOVL XAR7,#_switch_runstart                        ; Store Run Address in XAR7
    ;LCR  copy                                                        ; Branch to Copy

        MOVL XAR5,#_text_size                                ; Store Section Size in XAR5
        MOVL ACC,@XAR5                                                ; Move Section Size to ACC
        MOVL XAR6,#_text_loadstart                        ; Store Load Starting Address in XAR6
    MOVL XAR7,#_text_runstart                        ; Store Run Address in XAR7
    LCR  copy                                                        ; Branch to Copy

          
          LB _c_int00                                                         ; Branch to start of boot.asm in RTS library

copy:       
        B return,EQ                                                        ; Return if ACC is Zero (No section to copy)

        SUBB ACC,#1

    RPT AL                                                                ; Copy Section From Load Address to
    || PWRITE  *XAR7, *XAR6++                        ; Run Address

return:
        LRETR                                                                ; Return

        .end
       

 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/6 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表