u24c02
Advanced Member level 1
- Joined
- May 8, 2012
- Messages
- 404
- Helped
- 2
- Reputation
- 4
- Reaction score
- 2
- Trophy points
- 1,298
- Activity points
- 4,101
Hi.
I want to know how can I design a bi-directional port?
As I know, in verilog, there are inout port.
But I'm not sure what can I just connect by wire?
Is this synthesiable (design compiler ) code? If yes, then how to make port at physical design?
I want to know how can I design a bi-directional port?
As I know, in verilog, there are inout port.
But I'm not sure what can I just connect by wire?
Code Verilog - [expand] 1 2 3 4 5 6 7 8 9 10 module test (value, var); inout value; output reg var; assign value = (condition) ? <some value / expression> : 'bz; always @(<event>) var = value; endmodule
Is this synthesiable (design compiler ) code? If yes, then how to make port at physical design?
Last edited by a moderator: