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

📄 cmovtest.s

📁 非常好的汇编代码示例
💻 S
字号:
# cmovtest.s - An example of the CMOV instructions.section .dataoutput:   .asciz "The largest value is %d\n"values:   .int 105, 235, 61, 315, 134, 221, 53, 145, 117, 5.section .text.globl _start_start:   nop   movl values, %ebx   movl $1, %ediloop:   movl values(, %edi, 4), %eax   cmp %ebx, %eax   cmova %eax, %ebx   inc %edi   cmp $10, %edi   jne loop   pushl %ebx   pushl $output   call printf   addl $8, %esp   pushl $0   call exit

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -