mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
test: nasm-t -- Add prefix66 test
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
3fbd075ffa
commit
e6a3c72c79
26
travis/test/prefix66.asm
Normal file
26
travis/test/prefix66.asm
Normal file
@ -0,0 +1,26 @@
|
||||
BITS 16
|
||||
cmp ax, 1
|
||||
o16 cmp ax, 1
|
||||
o32 cmp ax, 1
|
||||
|
||||
cmp eax, 1
|
||||
o16 cmp eax, 1
|
||||
o32 cmp eax, 1
|
||||
|
||||
BITS 32
|
||||
cmp ax, 1
|
||||
o16 cmp ax, 1
|
||||
o32 cmp ax, 1
|
||||
|
||||
cmp eax, 1
|
||||
o16 cmp eax, 1
|
||||
o32 cmp eax, 1
|
||||
|
||||
BITS 64
|
||||
cmp ax, 1
|
||||
o16 cmp ax, 1
|
||||
o32 cmp ax, 1
|
||||
|
||||
cmp eax, 1
|
||||
o16 cmp eax, 1
|
||||
o32 cmp eax, 1
|
1
travis/test/prefix66.bin.t
Normal file
1
travis/test/prefix66.bin.t
Normal file
@ -0,0 +1 @@
|
||||
<EFBFBD><EFBFBD>f<EFBFBD>f<EFBFBD><EFBFBD>f<EFBFBD>f<EFBFBD>f<EFBFBD><EFBFBD><EFBFBD>f<EFBFBD><EFBFBD>f<EFBFBD>f<EFBFBD><EFBFBD><EFBFBD>f<EFBFBD><EFBFBD>
|
12
travis/test/prefix66.json
Normal file
12
travis/test/prefix66.json
Normal file
@ -0,0 +1,12 @@
|
||||
[
|
||||
{
|
||||
"description": "Test for 0x66 prefixes",
|
||||
"id": "prefix66",
|
||||
"format": "bin",
|
||||
"source": "prefix66.asm",
|
||||
"target": [
|
||||
{ "output": "prefix66.bin" },
|
||||
{ "stderr": "prefix66.stderr" }
|
||||
]
|
||||
}
|
||||
]
|
6
travis/test/prefix66.stderr
Normal file
6
travis/test/prefix66.stderr
Normal file
@ -0,0 +1,6 @@
|
||||
./travis/test/prefix66.asm:4: warning: invalid operand size prefix
|
||||
./travis/test/prefix66.asm:7: warning: invalid operand size prefix
|
||||
./travis/test/prefix66.asm:13: warning: invalid operand size prefix
|
||||
./travis/test/prefix66.asm:16: warning: invalid operand size prefix
|
||||
./travis/test/prefix66.asm:22: warning: invalid operand size prefix
|
||||
./travis/test/prefix66.asm:25: warning: invalid operand size prefix
|
Loading…
x
Reference in New Issue
Block a user