module nixietube( input [3:0] data, outputreg [6:0] show); alwaysbegin case(data[3:0]) 4'd0: show <= 7'b1000000; 4'd1: show <= 7'b1111001; 4'd2: show <= 7'b0100100; 4'd3: show <= 7'b0110000; 4'd4: show <= 7'b0011001; 4'd5: show <= 7'b0010010; 4'd6: show <= 7'b0000010; 4'd7: show <= 7'b1111000; 4'd8: show <= 7'b0000000; 4'd9: show <= 7'b0010000; 4'd10: show <= 7'b0001000; 4'd11: show <= 7'b0000011; 4'd12: show <= 7'b1000110; 4'd13: show <= 7'b0100001; 4'd14: show <= 7'b0000110; 4'd15: show <= 7'b0001110; default: show <= 7'b1000000; endcase end