This is my version in IA-32 assembly. NASM syntax. Linux only.
(NB: This version is deliberately jump-avoidant. For a more jumpy version, see my next version.)
Edit: Using similar techniques as mentioned in my other version, I've shaved off 21 bytes from the object code, bringing the size to 114 bytes!
global _start
section .text
_start sub eax, 104
sub ebx, 99
lea esp, [esp + 4*eax]
mov edi, esp
push dword 0x7a7a7542 ; Buzz
push dword 0x7a7a6946 ; Fizz
mov edx, esp
.loop lea ecx, [ebx + 100]
mov eax, ecx
aam 3
mov eax, ecx
setz ch
aam 5
setz cl
jecxz .num
and cl, ch
xor ch, 1
inc cl
movzx esi, ch
movzx ecx, cl
lea esi, [edx + 4*esi]
rep movsd
jmp .nl
.num lea eax, [ebx + 100]
aam
xchg al, ah
test al, al
setz cl
add ax, 0x3030
push eax
lea esi, [edx + ecx - 4]
xor cl, 1
inc ecx
rep movsb
pop eax
.nl mov al, 10
stosb
inc ebx
jle .loop
lea eax, [ebx + 3]
sub edi, edx
lea ecx, [edx + 8]
lea edx, [edi - 8]
int 0x80
mov eax, ebx
dec ebx
int 0x80
To build, use:
nasm -Ox -f elf fizzbuzz.asm
ld -s -m elf_i386 fizzbuzz.o