ack/util/ceg/ce_back/as_back/gen4.c
1989-01-26 10:58:30 +00:00

18 lines
377 B
C

#include "header.h"
gen4( w)
FOUR_BYTES w;
{
switch ( cur_seg) {
case SEGTXT : fprint( codefile, LONG_FMT, (long) w);
break;
case SEGCON : fprint( codefile, LONG_FMT, (long) w);
break;
case SEGROM : fprint( codefile, LONG_FMT, (long) w);
break;
case SEGBSS : bss( (arith) 4);
break;
default : fprint( STDERR, "gen4 unkown seg %d\n", cur_seg);
}
}