ack/util/ceg/ce_back/as_back/gen2.c

18 lines
367 B
C
Raw Normal View History

1987-11-20 10:41:03 +00:00
#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( 2);
break;
default : fprint( STDERR, "gen2 unkown seg %d\n", cur_seg);
}
}