`timescale 1ns/1ns//signed 代表a,b,c 可以是有符号的数module data_select( input clk, input rst_n, input signed[7:0]a, input signed[7:0]b, input [1:0]select, output reg signed [8:0]c);/*always@(posedge clk or negedge rst_n)begin if(!rst_n) begin c <= 0; end else case(select) 2'b00:begin c <= a; end 2'b01...