Guest User

Untitled

a guest
Nov 22nd, 2012
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ?testLoop@@YAXXZ PROC                   ; testLoop, COMDAT
  2.  
  3. ; 180  : {
  4.  
  5.     push    esi
  6.     push    edi
  7.  
  8. ; 181  :     for( int i = 101;  i != 104;  ++i )
  9.  
  10.     mov edi, 101                ; 00000065H
  11. $LL6@testLoop:
  12.  
  13. ; 182  :     {
  14. ; 183  :         for( int j = 3;  j != 8;  ++j )
  15.  
  16.     mov esi, 3
  17.     npad    4
  18. $LL3@testLoop:
  19.  
  20. ; 184  :         {
  21. ; 185  :             displayPair( j, i );
  22.  
  23.     push    edi
  24.     push    esi
  25.     call    ?displayPair@@YAXHH@Z           ; displayPair
  26.     inc esi
  27.     add esp, 8
  28.     cmp esi, 8
  29.     jne SHORT $LL3@testLoop
  30.  
  31. ; 181  :     for( int i = 101;  i != 104;  ++i )
  32.  
  33.     inc edi
  34.     cmp edi, 104                ; 00000068H
  35.     jne SHORT $LL6@testLoop
  36.     pop edi
  37.     pop esi
  38.  
  39. ; 186  :         }
  40. ; 187  :     }
  41. ; 188  :     newLine();
  42.  
  43.     jmp ?newLine@@YAXXZ             ; newLine
  44. ?testLoop@@YAXXZ ENDP                   ; testLoop
Advertisement
Add Comment
Please, Sign In to add comment