0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-07-24 10:25:42 -04:00

travis: add insertps

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2020-10-11 15:57:08 +03:00
parent 84c35517de
commit 407fe40f66
3 changed files with 22 additions and 0 deletions

10
travis/test/insertps.asm Normal file
View File

@ -0,0 +1,10 @@
bits 64
insertps xmm0,xmm1,16
insertps xmm0,dword xmm2,16
insertps xmm0,xmm2,byte 16
insertps xmm0,dword xmm2,byte 16
insertps xmm0,[rax],16
insertps xmm0,dword [rbx],16
insertps xmm0,[rcx],byte 16
insertps xmm0,dword [rdx],byte 16

BIN
travis/test/insertps.bin.t Normal file

Binary file not shown.

12
travis/test/insertps.json Normal file
View File

@ -0,0 +1,12 @@
[
{
"description": "Test insertps",
"id": "insertps",
"format": "bin",
"source": "insertps.asm",
"option": "-Ox",
"target": [
{ "output": "insertps.bin" }
]
}
]