Skip to content
This repository was archived by the owner on Jun 30, 2020. It is now read-only.

Instantiate module command does not support interfaces #26

@chickenjohn

Description

@chickenjohn

While using instantiate module command, interfaces in the module will be ignored.

For example, if the definition of the module is:

module even_top (
	input	 clk, reset, flush, flush_include_3rd,
	output logic [127:0] result_forward_port[7],
	stage_detect_interface.pipe even_stage_detect[9],
	regFile_unit_interface.pipe to_reg_bus
);

where even_stage_detect and to_reg_bus are interfaces, the instantiate module will be like:

even_top u_even_top(
	.clk(clk),
	.reset(reset),
	.flush(flush),
	.flush_include_3rd(flush_include_3rd),
	.result_forward_port(result_forward_port)
);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions