//単純な回路 module ON_Circuit( input BTN0, output LD0 ); assign LD0 = BTN0; endmodule