Guest
If I need to instantiate one copy of a module I've written for every
signal on a bus, eg:
module foo ( BAR, EN, Q);
Suppose that I want to implement foo modules on the 32-bit BAR bus, and
the 32-bit Q bus, but with a common enable:
BAR[31:0], EN, Q[31:0]
How do I do that without writing the module implementation 32 times?
signal on a bus, eg:
module foo ( BAR, EN, Q);
Suppose that I want to implement foo modules on the 32-bit BAR bus, and
the 32-bit Q bus, but with a common enable:
BAR[31:0], EN, Q[31:0]
How do I do that without writing the module implementation 32 times?