使用 yosys 在 verilog 中的案例状态下递增整数

Increment integer under case state in verilog with yosys

我不知道它是否符合 Verilog-2005 标准,但我设法使用 «synplify pro» 和 «icarus verilog» 编译了以下代码。

  integer fsm_step_number;

  always @(posedge clk or posedge rst)
    if(rst) begin
      pc <= 8'h00;
      wb_addr_o <= 8'h00;
      wb_wdat_o <= 8'h00;
      wb_stb_o  <= 1'b0;
      wb_cyc_o  <= 1'b0;
      wb_we_o   <= 1'b0;
      temt <= 1;
    end
    else begin
        fsm_step_number=1;
        case(pc)
                       fsm_step_number++: begin 
                          wb_addr_o <= UART_LSR;
                          wb_stb_o  <= 1'b1;
                          wb_cyc_o  <= 1'b1;
                          wb_we_o <= 1'b0;
                       end

                       fsm_step_number++: begin 
                          temt <= wb_rdat_i[6];
                          wb_stb_o  <= 1'b0;
                          wb_cyc_o  <= 1'b0;
                          wb_we_o <= 1'b0;
                       end
                 [...]
         endcase
 end

fsm_step_number 整数的递增不适用于点阵综合程序 (LSE) 和 Yosys。 我有一个 yosys 的语法错误:

yosys> read_verilog uart_ctrl_pre.v 
1. Executing Verilog-2005 frontend.
Parsing Verilog input from `uart_ctrl_pre.v' to AST representation.
ERROR: Parser error in line uart_ctrl_pre.v:74: syntax error, unexpected TOK_INCREMENT

您知道是否可以使用 Yosys 进行这样的思考(将整数递增到案例状态)?

++ 运算符在 SystemVerilog 中,而不是 Verilog 中。 而且我认为综合工具要求 case(expression) 或 item: 表达式列表是常量,但不允许两者都是非常量表达式。