GCC汇编源码中的.rept关键字

来源:互联网 发布:如何优化公司人力成本 编辑:程序博客网 时间:2024/05/21 14:05
.rept count
Repeat the sequence of lines between the .rept directive and the next .endr directive count times.
For example, assembling

.rept 3
.long 0
.endr

is equivalent to assembling
.long 0
.long 0
.long 0