improve SimValue<T> to generally be more like Expr<T> #27

Merged
programmerjake merged 7 commits from programmerjake/fayalite:improve-simvalue into master 2025-04-02 05:28:30 +00:00
Showing only changes of commit ec3a61513b - Show all commits

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