// CPEN 230L lab 9 part 1, SR Latch, active-low Set & Reset // Firstname Lastname, mm/dd/yy module SR_Latch ( input nS, input nR, output Q, output Qn); // write expressions for Q and Qn // Remember: no gate level structural coding style allowed! endmodule