sizefunc.s
来自「汇编经典教程profession_assembly_language(Richa」· S 代码 · 共 28 行
S
28 行
# sizefunc.s - Find the size of a file.section .text.globl sizefunc.type sizefunc, @functionsizefunc: pushl %ebp movl %esp, %ebp subl $8, %esp pushl %edi pushl %esi pushl %ebx movl $140, %eax movl 8(%ebp), %ebx movl $0, %ecx movl $0, %edx leal -8(%ebp), %esi movl $2, %edi int $0x80 movl -8(%ebp), %eax popl %ebx popl %esi popl %edi movl %ebp, %esp popl %ebp ret
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?