1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
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".
|
|
|
|
*/
|
1991-09-18 19:19:35 +00:00
|
|
|
#include <whichone.h>
|
1987-01-30 10:57:17 +00:00
|
|
|
|
|
|
|
#ifndef TBL68020
|
|
|
|
#ifndef TBL68000
|
|
|
|
Something is very wrong here. You must specify the machine: either
|
|
|
|
TBL68000 or TBL68020, in the file whichone.h, then REMOVE tables.c
|
|
|
|
and then run "make" again
|
|
|
|
#endif
|
1987-01-13 09:24:13 +00:00
|
|
|
#endif
|
1990-08-20 13:55:38 +00:00
|
|
|
#if WORD_SIZE!=2 && WORD_SIZE!=4
|
|
|
|
You must specify the appropriate word size, then REMOVE tables.c
|
|
|
|
#endif
|
1987-01-13 09:24:13 +00:00
|
|
|
|
|
|
|
#define ex_ap(y) fprintf(codefile,".extern %s\n",y)
|
|
|
|
#define in_ap(y) /* nothing */
|
|
|
|
|
|
|
|
#define newilb(x) fprintf(codefile,"%s:\n",x)
|
|
|
|
#define newdlb(x) fprintf(codefile,"%s:\n",x)
|
2019-06-17 20:26:31 +00:00
|
|
|
#define newplb(x) fprintf(codefile,".align 4\n%s:\n",x)
|
1987-01-13 09:24:13 +00:00
|
|
|
#define dlbdlb(x,y) fprintf(codefile,"%s = %s\n",x,y)
|
1987-08-06 15:11:09 +00:00
|
|
|
#define newlbss(l,x) fprintf(codefile,".comm %s,%ld\n",l,x);
|
1987-01-13 09:24:13 +00:00
|
|
|
|
|
|
|
#define pop_fmt "(sp)+"
|
|
|
|
#define cst_fmt "%ld"
|
|
|
|
#define off_fmt "%ld"
|
1987-02-09 16:26:56 +00:00
|
|
|
#define ilb_fmt "I%x_%x"
|
1989-01-16 13:35:02 +00:00
|
|
|
#define dlb_fmt "I_%d"
|
1987-01-13 09:24:13 +00:00
|
|
|
#define hol_fmt "hol%d"
|
|
|
|
|
|
|
|
#define hol_off "%ld+hol%d"
|
|
|
|
|
1990-08-20 13:55:38 +00:00
|
|
|
#if WORD_SIZE==2
|
1990-11-16 16:31:40 +00:00
|
|
|
#define con_cst(x) fprintf(codefile,".data2\t%ld\n",x)
|
1990-08-20 13:55:38 +00:00
|
|
|
#else
|
1987-01-13 09:24:13 +00:00
|
|
|
#define con_cst(x) fprintf(codefile,".data4\t%ld\n",x)
|
1990-08-20 13:55:38 +00:00
|
|
|
#endif
|
1987-01-13 09:24:13 +00:00
|
|
|
#define con_ilb(x) fprintf(codefile,".data4\t%s\n",x)
|
|
|
|
#define con_dlb(x) fprintf(codefile,".data4\t%s\n",x)
|
|
|
|
|
|
|
|
#define modhead ".sect .text\n.sect .rom\n.sect .data\n.sect .bss\n"
|
|
|
|
|
1987-01-30 10:57:17 +00:00
|
|
|
#define fmt_id(sf,st) sprintf(st,"_%s",sf)
|
|
|
|
|
1987-01-13 09:24:13 +00:00
|
|
|
#define BSS_INIT 0
|
1992-03-27 17:36:49 +00:00
|
|
|
#define MACH_OPTIONS
|