2

NASM 编译得很好,但是当我使用 YASM 时出现以下错误:

hello.asm:12:错误:macho:抱歉,不能在 64 位模式下应用 32 位绝对重定位,请考虑“[_symbol wrt rip]”用于内存访问,“qword”和“dq _foo”用于指针。

生成文件

test: hello
    ./hello
hello:
    yasm -f macho64 hello.asm   
    ld -o hello hello.o
clean:
    rm *.o *.core hello

系统公司

%define stdin       0
%define stdout      1
%define stderr      2

%define SYS_nosys   0
%define SYS_exit    1
%define SYS_fork    2
%define SYS_read    3
%define SYS_write   4

section .text
align 4
access.the.osx.kernel:
    syscall
    ret

%macro  system  1
    mov rax, %1
    call    access.the.osx.kernel
%endmacro

%macro  sys.exit    0
    system  SYS_exit
%endmacro

%macro  sys.write   0
    system  SYS_write
%endmacro

你好.asm

%include 'system.inc'

section .data
hello   db  'Hello, World!', 0Ah
hbytes  equ $-hello

section .text
global  start
start:
mov rax, 0x2000004
mov rdi, stdout
mov rsi, hello
mov rdx, hbytes
syscall
;sys.write

xor rdi, rdi
mov rax, 0x2000001
syscall
;sys.exit

有谁知道发生了什么?如果你能解释为什么 NASM 有效,但 YASM 不是,那将是一个奖励。

4

1 回答 1

3

我让它工作了。yasm你必须明确告诉它地址是 64 位的,如下所示:

mov rsi, qword hello

文档在这里讨论了这种情况:https ://github.com/yasm/yasm/wiki/AMD64

于 2013-01-15T17:54:07.223 回答