blob: 525a7aff92ed880a5064c3a511a78bed28d86165 [file] [log] [blame]
Eunchan Kimf2f85bd2022-07-13 14:56:26 -07001# Copyright lowRISC contributors.
2# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3# SPDX-License-Identifier: Apache-2.0
4r'''
5RDC Configuration Class
6'''
7
8from LintCfg import LintCfg
9
10
11class 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'