链接描述文件中某个部分之后的“=0”是什么?

what is '=0' after a section in linker script?

我想我知道这个但是忘记了。
节后的“=0”符号在链接描述文件中代表什么?

  .text :
  {
    *bootcode.o(boot)
    *vectors.o(vectors)
    *(.text) /* remainder of code */
  } =0

在部分定义中包含 =fill 指定该部分的初始填充值。 (在你的例子中=0)。 manual