test: nasm-t -- Add movnti test

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2018-11-04 01:31:24 +03:00
parent 2786f85aed
commit 76ff7aa4e4
3 changed files with 19 additions and 0 deletions

7
travis/test/movnti.asm Normal file
View file

@ -0,0 +1,7 @@
bits 16
movnti [si],eax
bits 32
movnti [esi],eax
bits 64
movnti [rsi],eax
movnti [rsi],rax

1
travis/test/movnti.bin.t Normal file
View file

@ -0,0 +1 @@
H

11
travis/test/movnti.json Normal file
View file

@ -0,0 +1,11 @@
[
{
"description": "Test movnti instruction",
"id": "movnti",
"format": "bin",
"source": "movnti.asm",
"target": [
{ "output": "movnti.bin" }
]
}
]