washing machine code using Verilog
`timescale 1ns / 1ps module washing_machine_fsm ( input clk, input rst_n, // Active low reset input start, input door_closed, input water_level,cycle_complete, output reg [2:0] state, output reg motor_on, output reg water_valve, output reg drain_valve, output reg buzzer ); localparam IDLE = 3'b000; localparam FILL_WATER = 3'b001; localparam WASH = 3'b010; localparam RINSE = 3'b011; localparam SPIN = 3'b100; localparam DRAIN_WATER = 3'b101; localparam END = 3'b110; localparam ERROR = 3'b111; reg [2:0] next_state; // State transition logic ...