(self, *args, **kwargs)
| 1353 | WriteMemoryInstruction): |
| 1354 | __slots__ = [] |
| 1355 | def __init__(self, *args, **kwargs): |
| 1356 | if not program.curr_tape.singular: |
| 1357 | raise CompilerError('Direct memory writing prevented in threads') |
| 1358 | super(DirectMemoryWriteInstruction, self).__init__(*args, **kwargs) |
| 1359 | |
| 1360 | ### |
| 1361 | ### I/O instructions |
nothing calls this directly
no test coverage detected