Circuits--Sequential Logic--Finite State Machines--Fsm1s

网址:https://hdlbits.01xz.net/wiki/Fsm1s

// Note the Verilog-1995 module declaration syntax here:
module top_module(clk, reset, in, out);
    input clk;
    input reset;    // Synchronous reset to state B
    input in;
    output out;//  
    reg out;

    // Fill in state name declarations
    parameter		A =

你可能感兴趣的:(HDLbits,fpga,verilog)