simulator read/write types must be passive
This commit is contained in:
parent
fdc73b5f3b
commit
ec3a61513b
|
@ -6698,6 +6698,11 @@ impl SimulationModuleState {
|
|||
mut target: Target,
|
||||
which_module: WhichModule,
|
||||
) -> CompiledValue<CanonicalType> {
|
||||
assert!(
|
||||
target.canonical_ty().is_passive(),
|
||||
"simulator read/write expression must have a passive type \
|
||||
(recursively contains no fields with `#[hdl(flip)]`)"
|
||||
);
|
||||
if let Some(&retval) = self.io_targets.get(&target) {
|
||||
return retval;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue