题解 | #优先编码器Ⅰ#

优先编码器Ⅰ

https://www.nowcoder.com/practice/a7068b8f4c824d6a9592f691990b21de

`timescale 1ns/1ns

module encoder_83(
   input      [7:0]       I   ,
   input                  EI  ,
   
   output wire [2:0]      Y   ,
   output wire            GS  ,
   output wire            EO    
);
wire [8:0] temp;
reg gs ,eo;
reg [2:0] y;
assign temp={EI,I[7:0]};
always @(*)
begin
casex(temp)
9'b0_????_????:begin y=3'B000;gs=1'b0;eo=1'b0;   end
9'b1_0000_0000:begin y=3'B000;gs=1'b0;eo=1'b1;   end
9'b1_1???_????:begin y=3'B111;gs=1'b1;eo=1'b0;   end
9'b1_01??_????:begin y=3'B110;gs=1'b1;eo=1'b0;   end
9'b1_001?_????:begin y=3'B101;gs=1'b1;eo=1'b0;   end
9'b1_0001_????:begin y=3'B100;gs=1'b1;eo=1'b0;   end
9'b1_0000_1???:begin y=3'B011;gs=1'b1;eo=1'b0;   end
9'b1_0000_01??:begin y=3'B010;gs=1'b1;eo=1'b0;   end
9'b1_0000_001?:begin y=3'B001;gs=1'b1;eo=1'b0;  end
9'b1_0000_0001:begin y=3'B000;gs=1'b1;eo=1'b0;   end


endcase
end

assign  Y=y;
assign GS=gs;
assign EO=eo;
endmodule

全部评论

相关推荐

巧克力1:双选会不如教室宣讲会
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务