diff --git a/travis/test/jmp64.asm b/travis/test/jmp64.asm new file mode 100644 index 000000000..d5900f4be --- /dev/null +++ b/travis/test/jmp64.asm @@ -0,0 +1,17 @@ + bits 64 + jmp rcx + jmp [rax] + jmp qword [rax] + jmp near [rax] + jmp near qword [rax] + jmp far [rax] + jmp far dword [rax] + jmp far qword [rax] + call rcx + call [rax] + call qword [rax] + call near [rax] + call near qword [rax] + call far [rax] + call far dword [rax] + call far qword [rax] diff --git a/travis/test/jmp64.bin.t b/travis/test/jmp64.bin.t new file mode 100644 index 000000000..64436c919 --- /dev/null +++ b/travis/test/jmp64.bin.t @@ -0,0 +1 @@ +ÿáÿ ÿ ÿ ÿ Hÿ(ÿ(Hÿ(ÿÑÿÿÿÿHÿÿHÿ \ No newline at end of file diff --git a/travis/test/jmp64.json b/travis/test/jmp64.json new file mode 100644 index 000000000..76ce48bdf --- /dev/null +++ b/travis/test/jmp64.json @@ -0,0 +1,11 @@ +[ + { + "description": "Test jmp in 64 bit mode", + "id": "jmp64", + "format": "bin", + "source": "jmp64.asm", + "target": [ + { "output": "jmp64.bin" } + ] + } +]