1991-12-01 00:07:32 -05:00
|
|
|
/* In Sony versions before 3.0, use the GNU Assembler, because the
|
|
|
|
system's assembler has no way to assemble the difference of two
|
|
|
|
labels for the displacement in a switch-dispatch instruction. */
|
|
|
|
|
|
|
|
#define USE_GAS
|
|
|
|
|
1996-05-05 13:09:49 -04:00
|
|
|
/* This is the assembler directive to equate two values. */
|
|
|
|
|
|
|
|
#undef SET_ASM_OP
|
2000-09-25 05:49:20 -04:00
|
|
|
#define SET_ASM_OP "\t.set\t"
|
1996-05-05 13:09:49 -04:00
|
|
|
|
|
|
|
/* This is how we tell the assembler that a symbol is weak. */
|
|
|
|
|
|
|
|
#undef ASM_WEAKEN_LABEL
|
|
|
|
#define ASM_WEAKEN_LABEL(FILE,NAME) \
|
|
|
|
do { fputs ("\t.weak\t", FILE); assemble_name (FILE, NAME); \
|
|
|
|
fputc ('\n', FILE); } while (0)
|
|
|
|
|
1993-01-05 03:47:27 -05:00
|
|
|
#include "m68k/news.h"
|