// // project : ECE 429 - LAB 7 // Author(s) : James E. Stine, Jr. and Dimitrios Velenis // Purpose : definition of module seven segment // notes : // // Copyright Illinois Institute of Technology // module seven_segment (a, b, c, d, e, f, g, YN); input [3:0] YN; output a; output b; output c; output d; output e; output f; output g; // Fill in your program below here endmodule // seven_segment