Verilog刷题笔记9

题目:

This problem is similar to module. You are given a module named that has 2 outputs and 4 inputs, in some order. You must connect the 6 ports by name to your top-level module’s ports: mod_a

Verilog刷题笔记9_第1张图片
我的解法:

module top_module ( 
    input a, 
    input b, 
    input c,
    input d,
    output out1,
    output out2
);
    mod_a mod_a1(.out1(out1),.out2(out2),.in1(a),.in2(b),.in3(c),.in4(d));
endmodule

结果正确:
Verilog刷题笔记9_第2张图片

你可能感兴趣的:(笔记)