/* Example 1: Connect push buttons 0-3 to leds 0-3. */ module esim1(PB_IN,LED_OUT); input [3:0] PB_IN; output [3:0] LED_OUT; assign LED_OUT = PB_IN; endmodule