blob: b4afd2a459675238b67e554c6b413c89a5759488 (
plain)
1
2
3
4
5
6
|
#ifndef OUTPUT_ASM_H
#define OUTPUT_ASM_H
int output_asm(FILE *fout, struct label *labels, size_t label_count, struct instruction *insts, size_t insts_count);
#endif /* OUTPUT_ASM_H */
|