diff options
author | ubq323 <ubq323@ubq323.website> | 2024-06-26 14:48:27 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-06-26 14:48:27 +0100 |
commit | 517e9fe048844533d927c4e3b6d021f82ccea984 (patch) | |
tree | 5629a6d2e43201c14a8d43d652751ff8a987eefb /dis.c | |
parent | a8519434f058d0ab60bf7f90acc61997cb982cfa (diff) |
remove OP_PUTS and OP_PRINT, use say and write functions instead
Diffstat (limited to 'dis.c')
-rw-r--r-- | dis.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -89,8 +89,6 @@ static size_t disasm_instr_h(Chunk *ch, size_t ip, int depth) { #define SIMPLE_INSTR(opcode, str) \ case opcode: puts(str); break; SIMPLE_INSTR(OP_RET, "ret") - SIMPLE_INSTR(OP_PUTS, "puts") - SIMPLE_INSTR(OP_PRINT, "print") SIMPLE_INSTR(OP_DROP, "drop") SIMPLE_INSTR(OP_ADD, "add") SIMPLE_INSTR(OP_SUB, "sub") |