⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sizefunc.s

📁 汇编经典教程profession_assembly_language(Richard Blum著) 的code
💻 S
字号:
# 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -