diff --git a/test/org.asm b/test/org.asm new file mode 100644 index 00000000..ae73ab62 --- /dev/null +++ b/test/org.asm @@ -0,0 +1,15 @@ +; +; Simple test of a 64-bit org directive +; + bits 64 + org 0xffffffffffff0000 + +hello: jmp there + nop + nop +there: + add rax,[rsp+rbx] + inc eax + + section .data +there_ptr dq there