Simple 64-bit org test

This commit is contained in:
H. Peter Anvin 2007-09-02 06:23:29 +00:00
parent e3e9e9fa0d
commit 4768f5f6f2

15
test/org.asm Normal file
View File

@ -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