-
Hello! There are two questions:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It should be abstract, good point! I'm not sure how that was missed. Opening an issue/PR for it would be a good idea, which I can do if you don't feel like it
There are a variety of constructs during a simulation that need to reference a single central simulator. For example, sequential logic (e.g. There are some other ways to implement this that could support multiple instances, but interaction between There are some nice benefits to having different I think if you use Dart isolates you could have multiple safe and independent |
Beta Was this translation helpful? Give feedback.
It should be abstract, good point! I'm not sure how that was missed. Opening an issue/PR for it would be a good idea, which I can do if you don't feel like it
There are a variety of constructs during a simulation that need to reference a single central simulator. For example, sequential logic (e.g.
Sequential
) needs to know when to sample a signal and when to drive an output based on clock edges. The …