简化版代码如下,仿真正确。 `timescale 1ns/1ns module seller2( input wire clk , input wire rst , input wire d1 , input wire d2 , input wire sel , output reg out1, output reg out2, output reg out3 ); //*************code***********// localparam IDLE = 3'd0, // 0 S0 = 3'd1, // 0.5 S1 = 3'd2, // 1 S2 = 3'd3, // 1.5 S...