Division in assembly. Characters are stored in ASCII?

section .text global main main:  mov esi, 10           ; ESI holds current number  mov eax, 0           ; EAX holds sum of numbers  push 10             ; Line feed for end of line (Stack is first in, last out -> Line feed will be last char)  mov edi, 10           ; Divisor of 10 for seperating digits of number (used in divisionLoop) ; Sum numbers 1 through 10 sumLoop:  add eax, esi          ; Add number to sum  dec esi             ; Next number  jnz sumLoop           ; Loop until 0 ; Seperate eax into its digits, by dividing by 10 multiple times, ; where in each division the remainder will be a single digit ; and the quotient will be the remaining digits used as dividend in next loop run divisionLoop:  mov edx, 0           ; Make sure edx is empty, as it is used as upper half of dividend  div edi             ; Divide eax by edi (= 10) => quotient is in eax (= Rest of digits for next loop), remainder in edx (= Single digit)  add edx, 48           ; Make edx (digit) a char representing its value by adding '0' to it  push edx            ; Push char to stack for usage in print later  cmp eax, 0           ; Loop until quotient is 0 (=> no more digits left)  jne divisionLoop ; Print digits from Stack one by one printLoop:  mov eax, 4  mov ebx, 1  mov ecx, esp          ; Print top of stack (esp always points to top of stack)  mov edx, 1           ; Length of 1 byte (= 1 char)  int 80h  pop esi             ; Remove top of stack  cmp esi, 10           ; Loop until Line feed is reached  jne printLoop exit:  mov eax, 1  mov ebx, 0           ; Exit code 0  int 80h

Hello,

Here is a program in assembler that adds the numbers from 1 to 10.

Divides 55 by 10 and then stores the remainders of the division in a stack.

push….

In the end everything is output to the console via the standard channel.

If I divide 55 by 10, the quotient is 5, which is in register eax, and the remainder is also 5, which is in register edx. Before I push the remainder onto the stack, the number is added to 48. Result bit 53 is the char character 5 in ASCII code.

Does this mean that the results of integer division in assembly code are always stored in ASCII characters?

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
6 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
KarlRanseierIII
1 year ago

No, of course it doesn’t mean that. ASCII is not other than a character encoding, i.e. a match which “number” carries a character.

Fortunately, the numbers successively begin at 0 in the coding, so that the addition of the value from 48 to the numerical value corresponds to the character of the digit.

KarlRanseierIII
1 year ago
Reply to  RedDevil1982

If you speak from the source, then yes, there are number liters of course ASCII coded, otherwise they would not be displayed as such.

In the finished Binary, of course, this looks different.

KarlRanseierIII
1 year ago
Reply to  RedDevil1982

This is simply because the standard output channel is a console and numbers in most codings are coded as in ASCII.

If I were to redirect stdout into a file, then if you write ASCII to STDOUT, it would be just encoded ASCII, using UTF-8, then UTF-8.

The terminal/terminal emulator reads virtually your stdout and interprets it according to definition.