Expand this into a sequence of RISC instructions.
(self)
| 1486 | self.expand() |
| 1487 | |
| 1488 | def expand(self): |
| 1489 | """ Expand this into a sequence of RISC instructions. """ |
| 1490 | raise NotImplementedError('expand method must be implemented') |
| 1491 | |
| 1492 | |
| 1493 | class InvertInstruction(Instruction): |