码迷,mamicode.com
首页 > 其他好文 > 详细

ARM-汇编 helloworld

时间:2014-06-29 19:52:01      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   cti   c   io   

.section .data
.output: 
    .ascii "%s\n\000"
.str:
    .ascii "hello world\0"
.section .text

helloworld_helloworld_void:
    mov ip, sp  
    stmfd sp!, {fp,ip,lr,pc}  
    sub fp, ip, #4 
    sub sp, sp, #4
    
    @init
    str r1,[fp,#-16]
    ldr r0,[fp,#-16]
    
    @str="hello world"
    ldr r0,[r0,#0]
    ldr r0,=.str
    
    ldmea fp, {fp,sp,pc}  
    .global main
main: 
    mov ip, sp  
    stmfd sp!, {fp,ip,lr,pc}  
    sub fp, ip, #4 
    sub sp, sp, #80
    
    @create obj
    ldr r0,=-16
    sub r1,fp,r0
    bl  helloworld_helloworld_void
    
    @call str
    str r0,[fp,#-20]
    ldr r0,=.output
    ldr r1,[fp,#-20]
    bl  printf
    
    ldmea fp, {fp,sp,pc}  
    
    

 

ARM-汇编 helloworld,布布扣,bubuko.com

ARM-汇编 helloworld

标签:style   blog   color   cti   c   io   

原文地址:http://www.cnblogs.com/fistao/p/3814848.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!