传送大型字符串的算法(摘自Richard Blum版):
#reptest.s -Moving a large string using MOVSL and MOVSB
.section .data
string1:
.asciz "This is a test of the conversion program!\n"
length:
.int 43
divisor:
.int 4
.section .bss
.lcomm buffer,43
.section .text
.globl _start
_start:
nop
leal ...