Eunchan Kim | f2f85bd | 2022-07-13 14:56:26 -0700 | [diff] [blame] | 1 | # Copyright lowRISC contributors. |
| 2 | # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| 3 | # SPDX-License-Identifier: Apache-2.0 |
| 4 | r''' |
| 5 | RDC Configuration Class |
| 6 | ''' |
| 7 | |
| 8 | from LintCfg import LintCfg |
| 9 | |
| 10 | |
| 11 | class RdcCfg(LintCfg): |
| 12 | '''Reset Domain Crossing''' |
| 13 | |
| 14 | flow = 'rdc' |
| 15 | |
| 16 | def __init__(self, flow_cfg_file, hjson_data, args, mk_config): |
| 17 | |
| 18 | super().__init__(flow_cfg_file, hjson_data, args, mk_config) |
| 19 | |
| 20 | self.results_title = f'{self.name.upper()} RDC Results' |