mmxtest.s

来自「汇编经典教程profession_assembly_language(Richa」· S 代码 · 共 16 行

S
16
字号
# mmxtest.s - An example of using the MMX data types.section .datavalues1:   .int 1, -1values2:   .byte 0x10, 0x05, 0xff, 0x32, 0x47, 0xe4, 0x00, 0x01.section .text.globl _start_start:   nop   movq values1, %mm0   movq values2, %mm1   movl $1, %eax   movl $0, %ebx   int $0x80

⌨️ 快捷键说明

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