What is a black-box module and why do we need them?
A black-box is a module in which only the input and output ports of module is available for the designers to connect and integrate with the other modules: The below is an example of a 2 to 1 multiplexer black-box module: /////////////—————–////////////////////module mux2_1 (input a,input b,input sel,output reg out); endmodule/////////////////————-///////////////// In the above Verilog code […]
What is a black-box module and why do we need them? Read More »