我正在检查GNU GRUB源代码,在/grub-core/boot/i386/pc/*.S
文件中,有很多.=
个标记。这是/grub-core/boot/i386/pc/boot.S
文件中的一个(第409-414行):
/*
* Windows NT breaks compatibility by embedding a magic
* number here.
*/
. = _start + GRUB_BOOT_MACHINE_WINDOWS_NT_MAGIC
我想知道的是.=
的含义。