Verilog multiple drivers

前端 未结 2 1686
青春惊慌失措
青春惊慌失措 2021-01-15 03:04

I\'m trying to make BCD Counter using Verilog that will be connected to 7-segment decoder.
After I synthesize it, the error occured like this:

相关标签:
2条回答
  • 2021-01-15 03:13

    Just to add to mcleod_ideafix's answer you have this block:

    always @(posedge Clock) begin
      if (Clear) begin
        BCD1 <= 0;
        BCD0 <= 0;
        end
    end
    

    Which implies a synchronous clear, I am not sure if that is your intention as typically you would have an asynchronous clear for you flip-flops in ASIC design, or set initial state for FPGA.

    For a flip-flop with an asynchronous active-high clear

    always @(posedge clock or posedge clear) begin
      if (clear) begin
        BCD1 <= 'b0;  //NB: defined widths
        BCD0 <= 'b0;
      end
      else
        // normal logic
      end
    end
    

    It is more typical to use active-low resets:

    always @(posedge clock or negedge clear_n) begin
      if (~clear_n) begin
        BCD1 <= 'b0;  //NB: defined widths
        BCD0 <= 'b0;
      end
      else
        if (up == 1'b1) begin
          // up logic
        end
        else if (down == 1'b1) begin
          // down logic
        end
        else begin 
          // nothing to see here
        end
      end
    end
    

    Doing comparisons with == 1'b1 means you will get a width mismatch warning instead of weird behaviour if the LHS (left hand side) is wider than 1 bit.

    I also noticed that you have:

    output [3:0] BCD1_1, BCD0_0 );
    reg [3:0] BCD1, BCD0;
    assign BCD1_1 = BCD1;
    assign BCD0_0 = BCD0;
    

    You just needed to do the following to have reg's as outputs:

    output reg [3:0] BCD1, BCD0
    

    Although I find the following much clearer:

    output reg [3:0] BCD1,
    output reg [3:0] BCD0
    
    0 讨论(0)
  • 2021-01-15 03:16

    You cannot modify BCD from different always blocks. Any modification should be perfomed in only one always. Something like:

    module BCDcountmod(
      input Clock, Clear, up, down,
      output [3:0] BCD1_1, BCD0_0 );
      reg [3:0] BCD1, BCD0;
    //reg [3:0] BCD1_1, BCD0_0;
    
      assign BCD1_1 = BCD1;
      assign BCD0_0 = BCD0;  
    
      always @(posedge Clock) begin
        //---- IS IT CLEAR? --------------
        if (Clear) begin
          BCD1 <= 0;
          BCD0 <= 0;
        end
        //---- IS IT UP? --------------
        else if (up) then begin
          if (BCD0 == 4'b1001) begin
            BCD0 <= 0;
            if (BCD1 == 4'b1001)
              BCD1 <= 0;
            else
              BCD1 <= BCD1 + 1;
          end
        end
        //---- IS IT DOWN? --------------
        else if (down) begin
          if (BCD0 == 4'b0000) begin
            BCD0 <= 4'b1001;
            if (BCD1 == 4'b1001)
              BCD1 <= 4'b1001;
            else
              BCD1 <= BCD1 - 1;
          end
          else
            BCD0 <= BCD0 - 1;
        end
      end
    endmodule
    
    0 讨论(0)
提交回复
热议问题