I run into a bit of an issue with ports in Verilog. In order to test my module, I created a top module with just wires as inputs and hardcoded some of the inputs (vector) to the core module. The thing I do not get is that XST shows those inputs to the core (which I am driving with the hardcoded values) as connected to ground. The image is below.
Some where else in the Core, it disconnects some blocks from inside of the core. I do not know how this second issue is linked with the input being hardcoded. Does this mean that inputs cannot be hardcoded at the top? Or do I have to disconnect all the sub blocks that use the inputs and manually provide the same hardcode for each of them (which I think is redundant)?