view nasmbuild/nasm-2.13rc9/test/org.asm @ 10656:d14f0b444087

<oerjan> ` cd wisdom; mv {\xc3\x84,\xc3\xa4}; mv \'{\xc3\x85,\xc3\xa5}\'
author HackBot
date Thu, 13 Apr 2017 03:46:40 +0000
parents 587a0a262d22
children
line wrap: on
line source

;Testname=elf64; Arguments=-Ox -felf64 -oorg.o; Files=stdout stderr org.o
;Testname=win64; Arguments=-Ox -fwin64 -oorg.o; Files=stdout stderr org.o

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