This is a much more jump-happy version of my last submission. On the upside, the object code size is reduced by 14 bytes, mostly by using lea (3 bytes) instead of constant register moves (5 bytes). (e.g., mov edx, 5 gets translated into lea edx, [ebx + 4], with the understanding that ebx is always fixed at 1.)
Edit: Since posting this initially, I've shaved off another 13 bytes, resulting in 108 bytes of object code, by exploiting that most registers start at 0, edx's top bits are never set, and [edi] < [ebp] < [esp + 4] in code size.
Edit2: By buffering all output into the stack before writing, I've shaved off another 8 bytes, resulting in 100 bytes of object code. (Bonus: apart from the Fizz/Buzz pushing, all instructions are 3 bytes or less.) I can cut another 3 bytes by buffering to .bss instead of the stack, but using additional sections adds bulk to the executable elsewhere, resulting in a net disadvantage.
global _start
section .text
_start sub eax, 104
sub ebx, 99
push dword 0x7a7a7542 ; Buzz
push dword 0x7a7a6946 ; Fizz
mov esi, esp
lea esp, [esi + 4*eax]
mov edi, esp
push edi
.loop lea ecx, [ebx + 100]
mov eax, ecx
aam 15
jz .fiftn
mov eax, ecx
aam 5
jz .five
mov eax, ecx
aam 3
jz .three
mov eax, ecx
aam
add al, 0x30
test ah, ah
jz .onedig
xchg ah, al
add al, 0x30
stosb
xchg ah, al
.onedig stosb
jmp .nl
.three mov eax, [esi]
stosd
jmp .nl
.fiftn mov eax, [esi]
stosd
.five mov eax, [esi + 4]
stosd
jmp .nl
.nl mov al, 10
stosb
inc ebx
jle .loop
pop ecx
mov edx, edi
sub edx, ecx
lea eax, [ebx + 3]
int 0x80
mov eax, ebx
dec ebx
int 0x80