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>
		
			
				
	
	
		
			12 lines
		
	
	
		
			336 B
		
	
	
	
		
			NASM
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			336 B
		
	
	
	
		
			NASM
		
	
	
	
	
	
| ;Testname=unoptimized; Arguments=-fbin -oloopoffs.bin -O0; Files=stdout stderr loopoffs.bin
 | |
| ;Testname=optimized;   Arguments=-fbin -oloopoffs.bin -Ox; Files=stdout stderr loopoffs.bin
 | |
| 	bits 16
 | |
| delay:	loop delay
 | |
| 	loop $
 | |
| delay2:	a32 loop delay2
 | |
| 	a32 loop $
 | |
| delay3:	loop delay3,ecx
 | |
| 	loop $,ecx
 | |
| delay4:	a32 loop delay4,ecx
 | |
| 	a32 loop $,ecx
 | |
| 	 |