输入的16位信号的高8位、低8位分别输入到两个8-3编码器中,高8位的编码器GS端接Y[3]、EO端接低8位的编码器的EI端。 上代码: `timescale 1ns/1ns module encoder_83( input [7:0] I , input EI , output wire [2:0] Y , output wire GS , output wire EO ); assign Y[2] = EI & (I[7] | I[6] | I[5] | I[4]); assign Y[1] = EI & (I[7] | I[6] | ~I[5]&~I[4]&...