ack/mach/vax4/ce/mach.h

45 lines
1,017 B
C
Raw Normal View History

#define ONE_BYTE int
#define TWO_BYTES int
1988-09-15 09:49:22 +00:00
#define FOUR_BYTES long
#define EM_WSIZE 4
#define EM_PSIZE 4
#define EM_BSIZE 0
#define BSS_INIT 0
#define NAME_FMT "_%s"
#define DNAM_FMT "_%s"
#define DLB_FMT "I_%ld"
1988-09-15 09:49:22 +00:00
#define ILB_FMT "I%03d%ld"
#define HOL_FMT "hol%d"
#define GENLAB 'I' /* compiler generated labels start with I */
1988-09-15 09:49:22 +00:00
#define ALIGN_FMT ""
#define BYTE_FMT ".byte %ld\n"
#define WORD_FMT ".word %ld\n"
#define LONG_FMT ".long %ld\n"
#define BSS_FMT ".space %ld\n"
#define SEGTXT_FMT ".text\n"
#define SEGDAT_FMT ".data\n"
#define SEGBSS_FMT ".data\n"
#define SYMBOL_DEF_FMT "%s :"
#define GLOBAL_FMT ".globl %s\n"
#define LOCAL_FMT ""
#define RELOC1_FMT ".byte %s + %ld\n"
#define RELOC2_FMT ".word %s + %ld\n"
#define RELOC4_FMT ".long %s + %ld\n"
#define fit_6bits(val) ((unsigned long)(val) < 64)
#define fit_byte(val) ((unsigned long)((val)+128) < 256)
#define fit_word(val) ((unsigned long)((val)+32768L) < 65536L)
1988-09-15 09:49:22 +00:00
#ifndef DEBUG
#define arg_error(s, i)
#endif