ack/util/ceg/ce_back/as_back/gen2.c
1989-01-20 14:54:55 +00:00

18 lines
375 B
C

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