2178|2

2

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

Msp430 编写汇编语言,求四个数中的最小值,并用LED显示其位置 [复制链接]

电子系大一新生,刚刚接触到msp430单片机。刚刚得到一个task是用汇编语言在四个数中找出其中的最小值,并用led显示其位置。。。。
这个是task的原文:
Task 2:

Write a program in assembly to find the the location of the smallest value in an array that contains 4 values of type int. e.g. given the array 1024, 520, 56, 670 your code should return location 2. The location should be displayed to the user in binary using the red and green LED on the MSP430 Launchpad.


然后在老师的blog里找到了一个很相似的,是找出一组数中的最大值
BIS.B #0xFF,&P1DIR ; Set port1 as output
BIC.B #0x01,&P1OUT ; clear bit0
; Main loop here
start: MOV.W #0, R7 ; initialise max value register
MOV.W #arr1, R4 ; load the starting address of the array1 into the register R4
loop: MOV.W @R4+,R5 ; load the value stored at the address in register R4 into R5
CMP.W #0000h,R5 ; check for end of array delimiter '0'
JZ done ; if end of array jump to done
CMP.W R7,R5 ; compare current value with max value
JGE update ; if current value is larger than max value jump to update
JMP loop

update: MOV.W R5,R7 ; move current value into max value register
JMP loop ; jump to loop

done: BIS.B #0x01,&P1OUT ; set bit 0 to indicate done
JMP start ; return to start

arr1: .word 1,2,3,4,5,7,6,0 ; array of 16 bit integers (with '0' delimiter)



问题的关键就在于怎样输出最小值得位置啊,快到deadline真的是憋不出来。。。。真的不懂汇编啊,求大神教下要怎样用LED输出位置

最新回复

代码没注意看 告诉你一个快速的办法,其实可以用C写出来之后反汇编,而且430的汇编和C感觉没什么大的区别的  详情 回复 发表于 2014-2-7 11:50
 
点赞 关注

回复
举报

172

帖子

0

TA的资源

纯净的硅(初级)

沙发
 
国外留学?好吧。。。心情好来回答下问题

没学过msp430,说错请误喷

第一个修改的地方是start: MOV.W #0, R7 改成MOV.W #FFFF, R7
第二个:JGE update 改成JL update
 
 

回复

774

帖子

2

TA的资源

纯净的硅(中级)

板凳
 
代码没注意看
告诉你一个快速的办法,其实可以用C写出来之后反汇编,而且430的汇编和C感觉没什么大的区别的
 
 
 

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

查找数据手册?

EEWorld Datasheet 技术支持

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

 
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
快速回复 返回顶部 返回列表