第一次在keil for arm中写汇编程序汇编程序编译错误。 10

流程就按照以前51的流程来的,新建工程——》新建文件——》保存为asm格式——》导入工程。程序代码如下:AREASort,CODE,READONLY;declarefor... 流程就按照以前51的流程来的,新建工程——》新建文件——》保存为asm格式——》导入工程。
程序代码如下:
AREA Sort,CODE,READONLY ;declare for code area
ENTRY ;entry for the whole code
start ;main code flag
MOV R4,#0 ;clear r4
LDR R6,=src ;r6 point to the begining of numbers
ADD R6,R6,#len ;r6 point to the end of numbers
outer ;outer loop begining
LDR R1,=src ;r1 point to the begining of numbers
inner ;inner loop begining
LDR R2,[R1] ;get the number in address of r1
LDR R3,[R1,#4] ;get the number in address next to r1
CMP R2,R3 ;compare two numbers we gotten
STRGT R3,[R1] ;if the first > the second
STRGT R2,[R1,#4] ;exchange the position of two numbers
ADD R1,R1,#4 ;the point of r1 move
CMP R1,R6 ;compare position current and ending
BLT inner ;if not meet the ending go on to loop

ADD R4,R4,#4 ;global counter +1
CMP R4,#len ;compare the current position
SUBLE R6,R6,#4 ;if not meet the ending
BLE outer ;go on to loop

AREA Array,DATA,READWRITE ;decare for data area
src DCD 2,4,10,8,14,1,20 ;init the original numbers
len EQU 7*4 ;get the length of numbers

END ;end of whole code
可是老是出现如下的错误
.\Objects\maopao.axf: Error: L6218E: Undefined symbol main (referred from __rtentry2.o).
可是汇编文件里怎么会有main呢,新手搞不懂了。。。
keil界面截图:
展开
 我来答
一剑出血
高粉答主

2015-11-02 · 醉心答题,欢迎关注
知道大有可为答主
回答量:5.7万
采纳率:78%
帮助的人:1.7亿
展开全部
……自己写汇编就别包含startup,人家可是认准了会有main()才会投奔的!
追问

可是我把startup remove了过后就出现了这个错:

.\Objects\maopao.sct(7): error: L6236E: No section matches selector - no section to be FIRST/LAST.

追答
你选择 Use Memory Layout  from Target Dialog,不要自己添加sct。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式