diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2020-10-11 15:57:08 +0300 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2020-10-11 15:57:08 +0300 |
commit | 407fe40f668f94f1ba676934b852b801db2c93c7 (patch) | |
tree | bff75fb48703fb07020de2fa2deef2d840ca4ece | |
parent | 84c35517de2ffa33a5525dcc17a311c30fbd7c4c (diff) | |
download | nasm-407fe40f668f94f1ba676934b852b801db2c93c7.tar.gz nasm-407fe40f668f94f1ba676934b852b801db2c93c7.tar.xz nasm-407fe40f668f94f1ba676934b852b801db2c93c7.zip |
travis: add insertps
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
-rw-r--r-- | travis/test/insertps.asm | 10 | ||||
-rw-r--r-- | travis/test/insertps.bin.t | bin | 0 -> 48 bytes | |||
-rw-r--r-- | travis/test/insertps.json | 12 |
3 files changed, 22 insertions, 0 deletions
diff --git a/travis/test/insertps.asm b/travis/test/insertps.asm new file mode 100644 index 00000000..68bae5bd --- /dev/null +++ b/travis/test/insertps.asm @@ -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 diff --git a/travis/test/insertps.bin.t b/travis/test/insertps.bin.t Binary files differnew file mode 100644 index 00000000..054af424 --- /dev/null +++ b/travis/test/insertps.bin.t diff --git a/travis/test/insertps.json b/travis/test/insertps.json new file mode 100644 index 00000000..4da7c987 --- /dev/null +++ b/travis/test/insertps.json @@ -0,0 +1,12 @@ +[ + { + "description": "Test insertps", + "id": "insertps", + "format": "bin", + "source": "insertps.asm", + "option": "-Ox", + "target": [ + { "output": "insertps.bin" } + ] + } +] |