ref: 0481916bfbc64666485d976d5b67e00dff5387ff
dir: /asm.h/
typedef struct Inst Inst; struct Inst { int type; union { Symbol *var; uint op; double f; int i; char *str; }; }; extern int debug; void a_result(Symbol *var); void a_op(uint op); void a_var(Symbol *var); void a_float(double f); void a_int(int i); void a_str(char *str); void a_init(void); void assemble(void);