0
section dseg
bits 16
gdt:
code_descriptor:     
.......

section cseg
bits 16
start:
    mov ax, seg dseg   

当我编译这个文件时,它说:

错误:符号“dseg”未定义。

怎么了?以及如何调用cseg的偏移地址?

4

1 回答 1

0

试试这个:

bits 16

section dseg
; ...

section cseg
start:
    mov ax, dseg
; ...
于 2012-10-21T08:36:30.783 回答