No change #t51

This commit is contained in:
Meyer Simon
2025-03-27 17:28:16 -04:00
parent 03be62dc19
commit 666e0a4159

View File

@ -25,11 +25,11 @@ void emit_binary_op(char* result, char* op, char* arg1, char* arg2);
void emit_unary_op(char* result, char* op, char* arg); void emit_unary_op(char* result, char* op, char* arg);
void emit_assignment(char* target, char* source); void emit_assignment(char* target, char* source);
// TODO: Find out what these are suposed to do. Guess is create an entry in // TODO: Find out what these are suposed to do. Guess is create an entry in
// the list of instructions // the list of instructions. Guess is that its suposed to ret a struct ptr
// * Implement integer/boolean/character specific operation handling // * Implement integer/boolean/character specific operation handling
// TODO: Find out what this means // TODO: Find out what this means.
// * Create output function to write instructions to file with line formatting // * Create output function to write instructions to file with line formatting
void emit_as_file(FILE * out_file, Instruction * instr_arr); void emit_as_file(FILE * out_file, Instruction * instr_arr);