-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support attach
#15
Comments
I haven't seen this construct, can you send me the full firrtl file. I will need to see how this thing gets lowered to figure out what's going on. |
Here's a very minimalistic example that just FIRRTL:
Chisel: class AttachTest extends Module {
val io = IO(new Bundle {
val in = Analog(1.W)
val out = Analog(1.W)
})
attach(io.in, io.out)
} |
I'll fixit, I'm curious why you put this issue on chick/visualizer instead of freechipsproject/diagrammer. Accident? |
@edwardcwang is this the only use case for attach, there is very little documentation, what should it do? Unlike connect it takes a list of expressions, not an lhs and rhs like connect |
W.r.t putting the issue here:
|
Attach is used to connect |
e.g. the following line is not recognized by the visualizer
The text was updated successfully, but these errors were encountered: