使用nasm在FreeBSD 11.2上的“ Hello,World”

时间:2019-02-05 17:57:02

标签: assembly x86-64 freebsd

在组装中,我无法显示文本。这个asm代码直接来自一本书(Igor Zhirkov编写的《低级编程》)。我无法在shell提示符下显示文本,但是程序可以正常汇编,然后成功与ld链接。

global _start

section .data
message: db 'hello, world!', 10

section .text
_start:
  mov rax, 1
  mov rdi, 1

  mov rsi, message
  mov rdx, 14
  syscall

asm source code, "hello world"

1 个答案:

答案 0 :(得分:3)

尝试这个示例(已在FreeBSD 12上进行了测试)

将其保存到hello.s

section .data

message:
    db      'hello, world!', 10

section .text

global _start
_start:
    mov     rax, 4
    mov     rdi, 1
    mov     rsi, message
    mov     rdx, 14
    syscall

    mov     rax, 1
    xor     rdi, rdi
    syscall

安装nasm

# pkg install nasm

现在将其组装为:

$ nasm -f elf64 hello.s

这将产生一个文件hello.o,您将使用ld链接该文件:

$ ld -m elf_amd64_fbsd -o hello -s hello.o

这应该创建一个名为hello的文件:

$ ./hello
hello, world!

如果您只是尝试:

$ ld -o hello -s hello.o

尝试运行它后,您可能会收到此错误:

ELF binary type "0" not known.
./hello: Exec format error. Binary file not executable.

同时选中此post (elf_i386_fbsd)this answer,以供进一步参考。

要修复粘贴的代码,请替换:

mov rax, 1

mov rax, 4

否则似乎只是要退出。

您可以在syscall中找到这些/usr/include/sys/syscall.h号,例如:

/*
 * System call numbers.
 *
 * DO NOT EDIT-- this file is automatically generated.
 * $FreeBSD: stable/12/sys/sys/syscall.h 339002 2018-09-28 17:25:28Z jhb $
 */

#define SYS_syscall     0
#define SYS_exit        1
#define SYS_fork        2
#define SYS_read        3
#define SYS_write       4
#define SYS_open        5
#define SYS_close       6
#define SYS_wait4       7
                                /* 8 is old creat */
#define SYS_link        9
#define SYS_unlink      10
                                /* 11 is obsolete execv */
#define SYS_chdir       12
#define SYS_fchdir      13
#define SYS_freebsd11_mknod     14
#define SYS_chmod       15
#define SYS_chown       16
#define SYS_break       17