test: nasm-t -- Add r13 test

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2018-11-04 01:16:03 +03:00
parent e6a3c72c79
commit 4683da7a93
3 changed files with 24 additions and 0 deletions

13
travis/test/r13.asm Normal file
View File

@ -0,0 +1,13 @@
bits 64
mov rax,[rbx]
mov rax,[rbx*4]
mov rax,[rbx+rbx*2]
mov rax,[r13+rbx*2]
mov rax,[rbp]
mov rax,[rbp*4]
mov rax,[rbp+rbp*2]
mov rax,[rbp+r13*2]
mov rax,[r13]
mov rax,[r13*4]
mov rax,[r13+rbp*2]
mov rax,[r13+r13*2]

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

Binary file not shown.

11
travis/test/r13.json Normal file
View File

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