section dseg
bits 16
gdt:
code_descriptor:
.......
section cseg
bits 16
start:
mov ax, seg dseg
当我编译这个文件时,它说:
错误:符号'dseg'未定义。
有什么问题?以及如何调用cseg的偏移地址?
答案 0 :(得分:0)
请改为尝试:
bits 16
section dseg
; ...
section cseg
start:
mov ax, dseg
; ...