getting-started-with-verilog icon indicating copy to clipboard operation
getting-started-with-verilog copied to clipboard

Module Requests

Open aklsh opened this issue 4 years ago • 2 comments

Comment below for module requests. I'll try to push a design ASAP.

aklsh avatar Jul 20 '20 16:07 aklsh

Its asking for Declaration of HA and FA modules

Nischu2291 avatar Jan 19 '22 15:01 Nischu2291

Its asking for Declaration of HA and FA modules

The makefile is deprecated as writing and maintaining it was difficult. The method to use now is to manually include all necessary files in the compilation instruction. For eg.,

iverilog testbench.v Adders/HA.v clock.v 

Alternatively, you can use the `include statements to include all the necessary files in testbench.v so that you can use

iverilog testbench.v

aklsh avatar Jan 20 '22 02:01 aklsh