Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
.text .globl foo .type foo,@function .cfi_startproc foo: push %ebp .cfi_adjust_cfa_offset 4 .cfi_offset %ebp, -8 .align 4 push %ebx .cfi_offset %ebx, -12 .cfi_adjust_cfa_offset 4 nop pop %ebx pop %ebp ret .cfi_endproc