simulator read/write types must be passive

This commit is contained in:
Jacob Lifshay 2025-03-27 23:03:44 -07:00
parent fdc73b5f3b
commit ec3a61513b
Signed by: programmerjake
SSH key fingerprint: SHA256:HnFTLGpSm4Q4Fj502oCFisjZSoakwEuTsJJMSke63RQ

View file

@ -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;
}