(self, ss, es, has_clk)
| 225 | self.state = None |
| 226 | |
| 227 | def handle_reset(self, ss, es, has_clk): |
| 228 | self.flush_queued() |
| 229 | key = '{}_SYM'.format('RESET' if has_clk else 'INTR') |
| 230 | cls, texts = self.lookup_proto_ann_txt(key, {}) |
| 231 | self.putx(ss, es, cls, texts) |
| 232 | self.bits = [] |
| 233 | self.state = 'ATR' if has_clk else None |
| 234 | |
| 235 | def handle_command(self, ss, is_start): |
| 236 | if is_start: |
no test coverage detected