//AND回路 module AND_Circuit( input SW0, input SW1, output LD0 ); assign LD0 = SW0 & SW1; endmodule