mirror of
				https://github.com/netwide-assembler/nasm.git
				synced 2025-10-10 00:25:06 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			184 B
		
	
	
	
		
			NASM
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			184 B
		
	
	
	
		
			NASM
		
	
	
	
	
	
| 
 | |
| %if __OUTPUT_FORMAT__ == 'bin'
 | |
| 
 | |
| db 'This is binary format file'
 | |
| 
 | |
| %elif __OUTPUT_FORMAT__ == 'obj'
 | |
| 
 | |
| db 'This is object format file'
 | |
| 
 | |
| %else
 | |
| 
 | |
| db 'This is some other format file'
 | |
| 
 | |
| %endif
 |