Advertisement
hugol

Untitled

Nov 26th, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .686
  2. .model flat
  3. extern _ExitProcess@4 : PROC
  4.  
  5. extern __write : PROC
  6. extern __read : PROC
  7.  
  8. public _main
  9. .data
  10.    
  11.     liczba dd 12345678h
  12. .code
  13.  
  14. _main:
  15.    
  16.  
  17.     mov eax, 100   
  18.  
  19.     mov ebx, eax
  20.     shl eax, 1
  21.     shl ebx, 3
  22.     add eax, ebx
  23.  
  24.  
  25.  
  26.     push 0
  27.     call _ExitProcess@4 ; zakończenie programu
  28. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement