1

I tried this code (using interruptions), but it is for DOS:

mov eax, 42 ; write 42 to console
mov ecx, 10 ; in decimal
out_int_loop:
    xor edx, edx
    div ecx
    push eax
        add dl, '0' ; one digit 
        mov ah, 2 ; 2 is code for writing character
        int 21h
    pop eax
    cmp eax, 0
    jnz out_int_loop
andrybak
  • 2,129
  • 2
  • 20
  • 40

1 Answers1

0

I used WriteConsoleA function from winapi.

Also I used GetStdHandle to get stdout.

To import this functions you need these lines:

extern  __imp__GetStdHandle@4
extern  __imp__WriteConsoleA@20
andrybak
  • 2,129
  • 2
  • 20
  • 40