您的位置 首页 嵌入式

Android ARM 汇编学习(一)

给自己挖了个坑,一切都得从HelloWorld开始。hello.S.datamsg:.asciiHello,World!\nlen=.-msg.text.globl_start_start:/…

给自己挖了个坑,全部都得从“Hello World”开端。

hello.S

.data

msg:
.ascii “Hello, World!\n”
len = . – msg

.text

.globl _start
_start:
/* syscall write(int fd, const void *buf, size_t count) */
mov %r0, $1 /* fd -> stdout */
ldr %r1, =msg /* buf -> msg */
ldr %r2, =len /* count -> len(msg) */
mov %r7, $4 /* write is syscall #4 */
swi $0 /* invoke syscall */

/* syscall exit(int status) */
mov %r0, $0 /* status -> 0 */
mov %r7, $1 /* exit is syscall #1 */
swi $0 /* invoke syscall */

arm-linux-androideabi-as -o hello.o hello.S

arm-linux-androideabi-ld -s -o hello hello.o

adb push hello /data/local/tmp/hello
adb shell /data/local/tmp/hello

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/qianrushi/276421.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部