23 lines
		
	
	
	
		
			586 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			586 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* $Header$ */
 | 
						|
 | 
						|
#define ex_ap(y)	fprintf(codefile,"\t.globl %s\n",y)
 | 
						|
#define in_ap(y)	/* nothing */
 | 
						|
 | 
						|
#define newilb(x)	fprintf(codefile,"%s:\n",x)
 | 
						|
#define newdlb(x)	fprintf(codefile,"%s:\n",x)
 | 
						|
#define newlbss(l,x)	fprintf(codefile,"%s:.=.+0%o\n",l,x);
 | 
						|
 | 
						|
#define cst_fmt		"$0%o"
 | 
						|
#define off_fmt		"0%o"
 | 
						|
#define ilb_fmt		"I%02x%x"
 | 
						|
#define dlb_fmt		"_%d"
 | 
						|
#define	hol_fmt		"hol%d"
 | 
						|
 | 
						|
#define hol_off		"0%o+hol%d"
 | 
						|
 | 
						|
#define con_cst(x)	fprintf(codefile,"0%o\n",x)
 | 
						|
#define con_ilb(x)	fprintf(codefile,"%s\n",x)
 | 
						|
#define con_dlb(x)	fprintf(codefile,"%s\n",x)
 | 
						|
 | 
						|
#define id_first	'_'
 | 
						|
#define BSS_INIT	0
 |