blob: 008c00eb9061b8518b74618f89ea39170533d7a0 [file] [log] [blame] [edit]
module top (
input btn,
output LED3,
);
assign LED3 = btn;
endmodule