gas .org与nasm中的ORG不同?

时间:2012-06-18 14:30:50

标签: assembly nasm gas

我正在使用gnu进行简单启动。它是这样的:

.text
.org 0x7c00
start:
    movw $0x7c0, %ax
    movw %ax, %ds
    movw %ax, %es
    leaw greeting_msg, %si
    call prtstr
....

end:
    .fill 510-(end - start), 1, 0
    .word 0xAA55

而输出的hexdump是:

○ → hexdump bare.o 
0000000 0000 0000 0000 0000 0000 0000 0000 0000
*
0007c00 c0b8 8e07 8ed8 8dc0 7f36 e87c 0046 02b8
0007c10 bb4f 4115 10cd f883 754f a133 4f01 3e8d
0007c20 7c97 15b9 cd41 8310 4ff8 2275 8b66 9b16

与nasm中的ORG行为不一样?如果我使用NASM,它会输出如下内容:

 ○ → hexdump test_org
0000000 c031 d88e 14be ac7c c008 0674 0eb4 10cd
0000010 f5eb feeb 6557 636c 6d6f 2065 6f74 4d20
0000020 6361 6e69 6f74 6873 0a0d 0000 0000 0000
0000030 0000 0000 0000 0000 0000 0000 0000 0000

这里有什么问题?感谢。

3 个答案:

答案 0 :(得分:2)

没有什么不对,只是在GAS中.org在NASM中不是.org。 GAS中的.org表示推进当前位置计数器的数量,如下所示:

.org expr, fill

填充是用来填充的内容,如果没有指定,则默认为零(more info here

NASM中的

.org表示将放置此模块的内存地址(从而生成正确的分支和跳转指令)(more info here

我建议你使用NASM来制作这样的平面二进制文件,对我来说总是很有魅力。

答案 1 :(得分:1)

您正在将二进制文件(来自Nasm)与来自(G)的可链接.o文件进行比较。我想如果你将你的“bare.o”与ld链接起来......“ld -o bare.bin -oformat binary bare.o”(不确定语法)你会想出更接近你期望的东西。或者......只使用nasm。

答案 2 :(得分:1)

使用ld -Ttext 0x7c00 --oformat=binary boot.o -o boot.bin