NASM:错误:COFF格式不支持任何特殊符号类型

时间:2014-06-04 22:38:39

标签: windows x86 nasm elf

我最近开始使用x86汇编代码,并尝试在Kali Linux机器上使用NASM编译它以供Windows使用。

输入后:

nasm -f win test.asm

我收到此错误:

error: COFF format does not support any special symbol types

关于如何为Windows格式化.asm文件的任何想法?

以下是我要组装的代码:

section .data
msg:    db "Hello World!"
msg_L: equ $-msg

section .text
global _start:

_start:
mov eax, 4
mov ebx, 1
mov ecx, msg
mov edx, msg_L
int 80h

mov eax, 1
mov ebx, 0
int 80h 

0 个答案:

没有答案