12 lines
		
	
	
	
		
			164 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			164 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* $Header$ */
 | 
						|
/*		A S M			*/
 | 
						|
 | 
						|
code_asm(s, l)
 | 
						|
	char *s;
 | 
						|
	int l;
 | 
						|
{
 | 
						|
	/*	'asm' '(' string ')' ';'
 | 
						|
	*/
 | 
						|
	s = s; l = l;
 | 
						|
	error("\"asm instruction not implemented", s);
 | 
						|
}
 |