<d1b2>
<ld;cd> When yall are working on designs that contain multiple clock domains and you have modules that are written with just the default sync domain is there an easy way to say that in one place 'sync' should be interpreted as 'my_domain_a' and in another place 'my_domain_b'
<d1b2>
<ld;cd> something like python with DefaultSync('my_domain_a'): a_counter = Counter(16) with DefaultSync('my_domain_b'): b_counter = Counter(8)
<d1b2>
<dragonmux> thought it took a dictionary as in DomainRenamer({'sync': 'my_domain_b'}), or is there a shortcut version of that specifically that just takes the target name of the sync domain?
<mwk>
it's a shorthand for {'sync': 'my_domain_b'}, yes