v86/tests/nasm/paddw.asm
2017-06-20 12:07:24 -04:00

18 lines
221 B
NASM

global _start
section .data
align 16
myquad:
dq 0xad0000ceadad00ff
mydword:
dd 0xcafebabe
myaddress:
dq 0x00adbeefc0de00ce
%include "header.inc"
movq mm0, [myquad]
paddw mm0, [myaddress]
%include "footer.inc"