You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
entity MyEntity {
in a: std::Logical,
}
arch RTL for MyEntity {
AnotherComp {
a <= a, // this is the important line
}
}
we currently can directly name the port a from the entity.
But since it's not directly in the arch, we may consider to refer to it via self.a (a more rusty approach) or entity.a (my favorite)
The text was updated successfully, but these errors were encountered:
Having an arch over an entity
we currently can directly name the port
a
from the entity.But since it's not directly in the arch, we may consider to refer to it via
self.a
(a more rusty approach) orentity.a
(my favorite)The text was updated successfully, but these errors were encountered: