相关代码 |
|
module aaa3_8(in,out); output [7:0] out; input [2:0] in; reg [7:0] output; always @(in) case(in) 3'b000:out=8'b01111111; 3'b001:out=8'b10111111; 3'b010:out=8'b11011111; 3'b100:out=8'b11101111; 3'b011:out=8'b11110111; 3'b101:out=8'b11111011; 3'b110:out=8'b11111101; 3'b111:out=8'b11111110; endcase endmodule
相关资源 |
|