multest.s
来自「*****汇编语言程序设计 源代码*****」· S 代码 · 共 26 行
S
26 行
# multest.s - An example of using the MUL instruction.section .datadata1: .int 315814data2: .int 165432result: .quad 0output: .asciz "The result is %qd\n".section .text.globl _start_start: nop movl data1, %eax mull data2 movl %eax, result movl %edx, result+4 pushl %edx pushl %eax pushl $output call printf add $12, %esp pushl $0 call exit
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?