(self, ss, es, io_high)
| 314 | return texts, length, is_proc |
| 315 | |
| 316 | def processing_start(self, ss, es, io_high): |
| 317 | self.proc_state = { |
| 318 | 'ss': ss or es, |
| 319 | 'es': es or ss, |
| 320 | 'clk': 0, |
| 321 | 'io1': bool(io_high), |
| 322 | } |
| 323 | |
| 324 | def processing_update(self, es, clk_inc, io_high): |
| 325 | if es is not None and es > self.proc_state['es']: |