equal
deleted
inserted
replaced
1 _foo: |
1 _foo: |
2 push %ebp |
2 push %ebp ; push current sp onto stack |
3 mov %esp,%ebp |
3 mov %esp,%ebp ; current sp into esp |
4 sub $0x10,%esp |
4 sub $0x10,%esp ; subtract 16 from esp |
5 movl $0x64636261,-0x6(%ebp) |
5 movl $0x64636261,-0x6(%ebp) ; store abcd in ebp - 6 |
6 movw $0x65,-0x2(%ebp) |
6 movw $0x65,-0x2(%ebp) ; store e in ebp - 2 |
7 movl $0x34333231,-0x10(%ebp) |
7 movl $0x34333231,-0x10(%ebp) ; store 1234 in ebp - 16 |
8 movl $0x38373635,-0xc(%ebp) |
8 movl $0x38373635,-0xc(%ebp) ; store 5678 in ebp - 12 |
9 movw $0x39,-0x8(%ebp) |
9 movw $0x39,-0x8(%ebp) ; store 9 in ebp - 8 |
10 leave |
10 leave ; pop last sp into ebp |
11 ret |
11 ret ; pop return address and |
|
12 ; go back to main |