Advertisement
dllbridge

Untitled

Apr 5th, 2025
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. format  PE console
  2. entry   start
  3. include 'win32ax.inc'
  4. include 'api\kernel32.inc'
  5.  
  6. section '.data' data readable writeable
  7.  
  8.            x     db  45
  9.            y     db  50
  10.            r_1   dw  ?       ; = 47
  11.            r_2   dw  ?       ; = 75
  12.  
  13. section '.code' code readable executable
  14.  
  15. start:    mov  eax, 0
  16.  
  17.           mov  al, [x]
  18.           mov  bl, [y]
  19.           add  al, bl        ; 1) 45 + 50 = 95
  20.           shr  al, 1         ; 2) 95 / 2  = 47 = r_1
  21.           mov  [r_1], ax
  22.           ;------------------------
  23.           mov  eax, 0
  24.           mov  ebx, 0
  25.           mov  al, [x]
  26.           mov  bl, [y]
  27.           mul  bx            ; 3) 50 * 45 = 2250
  28.           mov  bx, 30
  29.           idiv bx            ; 4) 2250/30 = 75 = r_2
  30.           ;------------------------
  31.  
  32.           add ax, [r_1]      ; 5) (r_1 + r_2) = (47 + 75) = 122 (answer)
  33.           cinvoke  printf, <"(x + y)/2 + (y * x)/30 =  %d", 10, 0>, eax
  34.  
  35.           ;------------------------
  36.           cinvoke  scanf, <"%d", 10, 0>, 76313
  37.           invoke   ExitProcess, 0
  38.  
  39.  
  40. section '.idata' import data readable
  41. library kernel32, 'kernel32.dll',\
  42.         msvcrt, 'msvcrt.dll'
  43.  
  44. import msvcrt,\
  45.        printf, 'printf',\
  46.        scanf, 'scanf'      
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement