paddw.asm 221 B

1234567891011121314151617
  1. global _start
  2. section .data
  3. align 16
  4. myquad:
  5. dq 0xad0000ceadad00ff
  6. mydword:
  7. dd 0xcafebabe
  8. myaddress:
  9. dq 0x00adbeefc0de00ce
  10. %include "header.inc"
  11. movq mm0, [myquad]
  12. paddw mm0, [myaddress]
  13. %include "footer.inc"