Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

Sequence Detector

Design and verify a sequence detector to detect the following sequence: 1110_1101_1011

Interface Definition

Overlapping sequences should be detected The module should have the following interface:

module Sequence_Detector
    input     wire        clk,
    input     wire        reset,
    input     wire        x_i,    // Serial input

    output    wire        det_o   // Output asserted when sequence is detected