gpt4 book ai didi

c - 分段拆解 helloworld

转载 作者:太空宇宙 更新时间:2023-11-04 07:32:00 25 4
gpt4 key购买 nike

社区成员推荐我分析以下内容,以了解 ARM 架构中发出的系统调用。我怀疑如何在这种结构中获取程序。我已经尝试过 gdb disas 命令,但部分不可见。请帮助。

.data 

HelloWorldString:
.ascii "Hello World\n"

.text

.globl _start

_start:
# Load all the arguments for write ()

mov r7, #4
mov r0, #1
ldr r1,=HelloWorldString
mov r2, #12
svc #0

# Need to exit the program

mov r7, #1
mov r0, #0
svc #0

最佳答案

gcc -S filename.c -o filename.S

关于c - 分段拆解 helloworld,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12949947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com