0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-08-23 10:33:50 -04:00

travis: add splitea test

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2020-10-10 14:12:35 +03:00
parent 35b3e90741
commit b07ef09273
3 changed files with 23 additions and 0 deletions

11
travis/test/splitea.asm Normal file
View File

@ -0,0 +1,11 @@
bits 32
mov eax,[eax]
mov eax,[eax+ecx]
mov eax,[eax+ecx*4]
mov eax,[eax+ecx*4+8]
mov eax,[eax]
mov eax,[eax,ecx]
mov eax,[eax,ecx*4]
mov eax,[eax+8,ecx*4]

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

Binary file not shown.

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

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