inst_buffer
static inline int get_byte(inst_buffer * ib);
static inline int get_word(inst_buffer * ib);
static inline int get_long(inst_buffer * ib);
static int get_opcode(inst_buffer * ib);
static int get_operands(inst_buffer * ib);
static int get_operand(inst_buffer * ib, int size);
static inline void add_char(inst_buffer * ib, char c);
static inline void add_str(inst_buffer * ib, const char *s);
static void add_int(inst_buffer * ib, int i);
static void add_xint(inst_buffer * ib, int i);
static void add_sym(inst_buffer * ib, int i);
static void add_off(inst_buffer * ib, int i);
inst_buffer ib;
get_opcode(inst_buffer *ib)
get_operands(inst_buffer *ib)
get_operand(inst_buffer *ib, int size)
get_byte(inst_buffer *ib)
get_word(inst_buffer *ib)
get_long(inst_buffer *ib)
add_char(inst_buffer *ib, char c)
add_str(inst_buffer *ib, const char *s)
add_int(inst_buffer *ib, int i)
add_xint(inst_buffer *ib, int val)
add_sym(inst_buffer *ib, int loc)
add_off(inst_buffer *ib, int loc)