diff options
| author | mryouse | 2023-05-27 01:08:47 +0000 |
|---|---|---|
| committer | mryouse | 2023-05-27 01:08:47 +0000 |
| commit | 21eff156a3094c82ad85f8d3658fc1ac79c63da1 (patch) | |
| tree | 2b0ec423038b812ba5fc0130f2744bd3a23d7083 /dbg.d | |
| parent | a043f552ddca8d890b14bcddf555472ef69e9014 (diff) | |
multiplication
Diffstat (limited to 'dbg.d')
| -rw-r--r-- | dbg.d | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -8,8 +8,8 @@ import parser; //import dbg; //import value; -bool DEBUG = true; -//bool DEBUG = false; +//bool DEBUG = true; +bool DEBUG = false; void printForm(Form f, string prefix = "") { @@ -177,6 +177,8 @@ int disassemble(Chunk chunk, int offset) { return listInstruction("OP_LIST", chunk, offset); case OpCode.OP_ADD: return simpleInstruction("OP_ADD", offset); + case OpCode.OP_MULTIPLY: + return simpleInstruction("OP_MULTIPLY", offset); case OpCode.OP_LESS: return simpleInstruction("OP_LESS", offset); case OpCode.OP_GREATER: |
