(opcode)
| 901 | mainOpcodeTable.addIndexed(noOp); |
| 902 | |
| 903 | function splitOpcodeToComponents(opcode) { |
| 904 | const i = opcode.indexOf("("); |
| 905 | const prefix = opcode.substr(0, i); |
| 906 | return [prefix].concat(opcode.substring(i + 1, opcode.length - 1).split(",")); |
| 907 | } |
| 908 | |
| 909 | function normalizeOpcodeComponents(components) { |
| 910 | for (let i = 1; i < components.length; i++) { |