ref: cbbb6280961fd5a120d2a5a765bd483fbfc86af7
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);