1987-03-10 11:49:39 +00:00
|
|
|
/* $Header$ */
|
1987-03-09 19:15:41 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1986-10-10 15:21:35 +00:00
|
|
|
#define ex_ap(y) fprintf(codefile,".extern %s\n", y)
|
1984-07-19 10:03:10 +00:00
|
|
|
#define in_ap(y) /* nothing */
|
|
|
|
|
|
|
|
#define newilb(x) fprintf(codefile,"%s:\n",x)
|
|
|
|
#define newdlb(x) fprintf(codefile,"%s:\n",x)
|
|
|
|
#define dlbdlb(x,y) fprintf(codefile,"%s = %s\n",x,y)
|
1991-03-18 15:06:01 +00:00
|
|
|
#define newlbss(l,x) fprintf(codefile,".comm %s,%ld\n",l,x);
|
1984-07-19 10:03:10 +00:00
|
|
|
|
|
|
|
#define pop_fmt "(sp)+"
|
1985-06-04 10:21:15 +00:00
|
|
|
#define cst_fmt "%ld"
|
|
|
|
#define off_fmt "%ld"
|
1987-02-09 16:47:04 +00:00
|
|
|
#define ilb_fmt "I%x_%x"
|
1984-07-19 10:03:10 +00:00
|
|
|
#define dlb_fmt "_%d"
|
|
|
|
#define hol_fmt "hol%d"
|
|
|
|
|
|
|
|
#define loc_off "%d(a6)"
|
|
|
|
#define arg_off "8+%d(a6)"
|
1987-04-02 10:17:06 +00:00
|
|
|
#define hol_off "%ld+hol%d"
|
1984-07-19 10:03:10 +00:00
|
|
|
|
1987-04-02 10:17:06 +00:00
|
|
|
#define con_cst(x) fprintf(codefile,".data2\t%ld\n",x)
|
1985-06-04 10:21:15 +00:00
|
|
|
#define con_ilb(x) fprintf(codefile,".data4\t%s\n",x)
|
|
|
|
#define con_dlb(x) fprintf(codefile,".data4\t%s\n",x)
|
1984-07-19 10:03:10 +00:00
|
|
|
|
1986-10-10 15:05:10 +00:00
|
|
|
#define fmt_id(fr,to) sprintf(to, "_%s", fr)
|
|
|
|
|
1985-06-04 10:21:15 +00:00
|
|
|
#define modhead ".sect .text;.sect .rom;.sect .data;.sect .bss\n"
|
1984-07-19 10:03:10 +00:00
|
|
|
|
|
|
|
#define BSS_INIT 0
|
|
|
|
|