我想寫一些vhdl檢測給定模式的位串。在輸入流中發現模式「110」時,電路應該輸出1。我的輸入是「X」,輸出是「Z」。 我不知道如何檢查「110」的輸入模式。 這是我到目前爲止有: library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity checker is
Port (clk : in STD_LOGIC;
x : in S
public abstract class State<T>
{
public virtual Enter(T item)
{
// an empty method
}
}
public class ChaseState : State<FieldPlayer>
{
public override Enter(Player pl)