// File Name: B4to7SEG.v
// Converts 4-bit unsigned binary number to two decimal HEX digits
module B4to7SEG(
  input Blank,     			// Display is off when Blank is 1
  input [3:0] N,   				// 4-bit unsigned number
  output [6:0] MSD,		// Most significant digit
  output [6:0] LSD 		// Least significant digit
);

// Declare look-up table

// Load the look-up table

// Assign MSD and LSD

endmodule  // B4to7SEG