如何解决在Verilog中分配多个值错误的问题?

时间:2019-03-21 19:32:17

标签: verilog hierarchical

以下是研究Verilog分层设计的尝试。 这是我正在实现的电路: enter image description here

电路的顶级模块是:

 module D_Filiflop_Hierarchal_top_level (clock, reset, i_d, q);

    input clock;
    input reset;
    input i_d;
    output [1:0] q;


    D_Flipflop u0 (.clk(clock), .rst(reset), .q(q[0]), .d(i_d));
    D_Flipflop u1 (.clk(clock), .rst(reset), .q(q[1]), .d(q[0]));

endmodule


以下是定义的D触发器模块:

module D_Flipflop(clk,rst, d, q);
input clk;
input rst;
output d;
output reg q;

always @ (posedge clk or posedge rst) begin

    if (rst) begin
    q <= 1'b0;
    end

    else begin
    q <= d;
    end

end 

endmodule

但这是错误消息控制台,显示:

Error (12014): Net "q[0]", which fans out to "q[0]", cannot be assigned more than one value
    Error (12015): Net is fed by "D_Flipflop:u0|q"
    Error (12015): Net is fed by "D_Flipflop:u1|d"

enter image description here

请告知我如何解决此错误。

1 个答案:

答案 0 :(得分:4)

output的{​​{1}}更改为input

d