putint:
# 2400
# 2400 / 10 = 240 | 0
# z x y
pushl %ebp
movl %esp, %ebp
movl $0, %ebx
movl $0, %eax
movl 8(%ebp), %eax
movl %eax, dividend
movl $INT_TEMP_BUFFERT, %ecx
movl $0, INT_TEMP_SIZE
movl $0, %edx
loop_while_have_ints:
movl dividend, %eax
movl dividend+4, %edx
divl divisor
movl %eax, quotient
movl %edx, remainder
movl %eax, dividend
# Convert to char
add $48, remainder
movb remainder, %dl
movb %dl, (%ecx)
inc %ecx
add $1, INT_TEMP_SIZE
cmp $0, quotient
jle putintdone
jmp loop_while_have_ints
putintdone:
add INT_TEMP_SIZE, %ecx
# In case someone played with this crap..
movl $0, %ecx
movl $0, %ebx
movl $0, %edx
movl $BUFFERT, %ebx
add BUFFERT_POS_WRITING, %ebx
movl $0, %eax
movl INT_TEMP_SIZE, %eax
sub $1, %eax
putintdone_loop:
# Add in correct order
cmp $0, INT_TEMP_SIZE
jle putintcleanup
movl $INT_TEMP_BUFFERT, %ecx
add %eax, %ecx
movb (%ecx), %dl
movb %dl, (%ebx)
add $1, BUFFERT_POS_WRITING
inc %ebx
sub $1, %eax
sub $1, INT_TEMP_SIZE
jmp putintdone_loop
putintcleanup:
movl %ebp, %esp
popl %ebp
ret
This code is something i wrote in a course at my university, its a library for handling input and output. This was the hardest part and i swore A LOT over this peice of crap code :) whole source here, manual here