.align在mips中的用法

时间:2018-07-23 08:45:38

标签: mips32

我对MIPS中有关“ .align”的用法感到困惑。我下面的代码的原始目的是使“ __isr_start” 4096个字节被划分。但是我不明白为什么它也会影响“ _start”,它也被设置为4096字节。

谢谢

相关代码:

.section    .text.start
FUNC    _start, :
_start:
nop
wait

END_FUNC    _start

.section .text.vector
.align  12
FUNC    __isr_start,    :
__isr_start:
wait
END_FUNC    __isr_start

0 个答案:

没有答案