Please build a flowchart and must include handling and checking of inputs must have details, for example cannot just said “Check inputs”, ?must show how that is done: inputs/outputs: • Use sw0 for load • Use sw1 for start/stop • Use sw17-sw12 (MSB-LSB) for the 6-bit minute input • Use sw11-sw6 (MSB-LSB) for the 6-bit second input • Use 4 seven-segment displays for minutes, seconds • Use ledr0 for the zero LED Use variables to store Minutes, Seconds If load = 1 { read in inputs check for input limits } else if start/stop = 0 { if seconds = 0 and minutes = 0 { zero led on stop timer else { if seconds != 0 { seconds = seconds – 1 } else { minute = minute -1 second = 59 Inputs Conditions: If inputs of seconds > 59, should display 59 If inputs of minutes > 59, should display 59 0 <= Seconds display <= 59 0 <= Minutes display <= 59
