Advertisement
Le_BuG63

Untitled

Sep 10th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 0000000000000000 <main>:
  2. int main(void) {
  3.    0:   55                      push   rbp
  4.    1:   48 89 e5                mov    rbp,rsp
  5.    4:   48 83 ec 30             sub    rsp,0x30
  6.    8:   e8 00 00 00 00          call   d <main+0xd>
  7.         int a;
  8.         int b;
  9.  
  10.         a = "{";
  11.    d:   48 8d 05 00 00 00 00    lea    rax,[rip+0x0]        # 14 <main+0x14>
  12.   14:   89 45 fc                mov    DWORD PTR [rbp-0x4],eax
  13.         b = "{";
  14.   17:   48 8d 05 00 00 00 00    lea    rax,[rip+0x0]        # 1e <main+0x1e>
  15.   1e:   89 45 f8                mov    DWORD PTR [rbp-0x8],eax
  16.  
  17.         return 0;
  18.   21:   b8 00 00 00 00          mov    eax,0x0
  19.   26:   48 83 c4 30             add    rsp,0x30
  20.   2a:   5d                      pop    rbp
  21.   2b:   c3                      ret
  22.   2c:   90                      nop
  23.   2d:   90                      nop
  24.   2e:   90                      nop
  25.   2f:   90                      nop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement