mirror of
				https://github.com/netwide-assembler/nasm.git
				synced 2025-10-10 00:25:06 -04:00 
			
		
		
		
	Using hidden files are rather antisocial, and rather pointless in this particular context. Change .stdout and .stderr to simply stdout and stderr. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			333 B
		
	
	
	
		
			NASM
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			333 B
		
	
	
	
		
			NASM
		
	
	
	
	
	
| ;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
 |