hdlbits_Module_pos

Module pos

You are given a module named mod_a that has 2 outputs and 4 inputs, in that order. You must connect the 6 ports by position to your top-level module's ports out1, out2, a, b, c, and d, in that order.

You are given the following module:

module mod_a ( output, output, input, input, input, input );

Module_pos

solution

1
2
3
4
5
6
7
8
9
10
11
module top_module ( 
input a,
input b,
input c,
input d,
output out1,
output out2
);
mod_a instance_a(out1, out2, a, b, c, d);
endmodule


hdlbits_Module_pos
http://456-xiao.github.io/2024/08/06/hdlbits-Module-pos/
作者
xyh
发布于
2024年8月6日
许可协议