Reversing the numbers as required here is one of the few algorithms thats nicer in assembly than in a high level language:
When you get a digit from the divide, push it on the stack and increment a counter. At the end, do a loop, popping each digit and sending it to the output.
1 comment
[ 4.9 ms ] story [ 13.3 ms ] threadWhen you get a digit from the divide, push it on the stack and increment a counter. At the end, do a loop, popping each digit and sending it to the output.