返回介绍

3. Hello, World!

发布于 2024-10-13 10:58:55 字数 1105 浏览 0 评论 0 收藏 0

源码通常分成多个段(section)。标签(label)用于标示内存地址,区分大小写。注释(comment)以分号开始,持续到行尾。

除直接映射机器代码的命令外,还有语言定义的伪指令。伪指令(Pseudo Instruction)面向编译器,告知如何工作。

; hello.s

global _start

section .data
  hello : db `hello, world!\n`

section .text
  _start:
    mov   rax, 1    ; system call number should be stored in rax
    mov   rdi, 1    ; argument #1 in rdi: where to write (descriptor)?
    mov   rsi, hello  ; argument #2 in rsi: where does the string start?
    mov   rdx, 14   ; argument #3 in rdx: how many bytes to write?
    syscall       ; this instruction invokes a system call

    mov   rax, 60   ; 'exit' syscall number
    xor   rdi, rdi  ;
    syscall
$ nasm -g -F dwarf -f elf64 -o hello.o hello.s
$ ld -o test hello.o
# makefile

.PHONY: build clean

build:
  @nasm -g -F dwarf -f elf64 -o hello.o hello.s
  @ld -o hello hello.o

clean:
  -@rm -rf test hello a.out
  -@rm -rf *.o *.i *.a *.so

Linux Syscall Table for X64

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文