(self, es, clk_inc, 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']: |
| 326 | self.proc_state['es'] = es |
| 327 | self.proc_state['clk'] += clk_inc |
| 328 | if io_high: |
| 329 | self.proc_state['io1'] = True |
| 330 | |
| 331 | def handle_data_byte(self, ss, es, data, bits): |
| 332 | '''Accumulate CMD or OUT data bytes.''' |